MyBB Community Forums

Full Version: Changing where the logo links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey im just setting up my first mybb
iv changed the logo(by this i mean the big MYBB in the top right corner) to the logo of my website, but havent been able to spot in the code where it is told to link to the index of the forums, what i want is it to link to the index of my website.
thanks
Hello, if you go to:

Admin CP > Templates > Modify / Delete > "Your boards template name" > open the header template and find the code:

<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" /></a></div>

change the part
{$mybb->settings['bburl']}/index.php
to your websites index url, for example:

http://www.mybboard.com/index.php

then, click "update" template, your image should now link to your website index.