risoknop Posted January 9, 2010 Share Posted January 9, 2010 How can I make the title of the whmcs client area (top left heading) make a link back to my main website? 0 Quote Link to comment Share on other sites More sharing options...
m00 Posted January 9, 2010 Share Posted January 9, 2010 In case you're using the "portal" theme, just edit line 13 in /templates/portal/header.tpl and add an hyperlink, like: <div id="company_title"><a href="page-to-return-to.php" id="company_title">{$companyname}</a></div> 0 Quote Link to comment Share on other sites More sharing options...
RMIGHTY1 Posted January 9, 2010 Share Posted January 9, 2010 (edited) Hi risoknop! I am not a php person, so this is how I did mine. /templates/ezweb/header.tpl line 14 ORIG <img src="templates/{$template}/header.jpg" width="730" height="118" alt="" \> line 14 MOD <a target="_blank" title="To EZwebstart.com Home Page" href="http://ezwebstart.com"><img src="templates/{$template}/header.jpg" width="730" height="118" border="0" alt="EZwebstart.com Header with Logo" \></a> I added target="_blank" to open the link in a new browser page. Added "title" for visitor preview to show where link will take them. Added the "href" link of my home page. Added "border" equal to zero so no border shows, otherwise default is to show image border. Added an "alt" to give verbal description of area while header loads on page. I understand the "Title" and "Alt" help with vision impaired folks using page readers. It also boosts the SEO. You can have a peek at mine to see if it is what you want: http://ezwebstart.biz/cp/ This is just another method of accomplishing what you described. This is one I can understand. I hope it helps you too. Cheers, ~~Ray Edited January 9, 2010 by RMIGHTY1 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.