MyBB Community Forums

Full Version: header template logo link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to change my header logo link so that it links to a different site

here is the template code that has the area needed to be changed
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

where index.php is, I want to add a link to a different site. I tried changing index.php to something like http://www.mysite.com but it didn't work.

How would I go about editing this?

Thanks!
Nevermind, figured it out. Sorry for the wasted post

<div class="logo"><a href="http://www.mysite.com"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div> 
(2009-10-10, 03:19 AM)arineod Wrote: [ -> ]I would like to change my header logo link so that it links to a different site

here is the template code that has the area needed to be changed
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

where index.php is, I want to add a link to a different site. I tried changing index.php to something like http://www.mysite.com but it didn't work.

How would I go about editing this?

Thanks!
Nevermind, figured it out. Sorry for the wasted post

<div class="logo"><a href="http://www.mysite.com"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div> 

=]