MyBB Community Forums

Full Version: Change redirection link when you click logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
title says it all,
so how do you customize the link when you click your logo,
to a different link?
Go to your AdminCP -> Templates & Style -> Templates -> Your Template -> Header Templates -> Header.
Find the <div id="logo"> section. This is your logo's section, and you should see the link there. For example, in my case it's:
<div id="logo">
<div class="wrapper">
<a href="{$mybb->settings['bburl']}"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
</div>

And you could change it to
<div id="logo">
<div class="wrapper">
<a href="http://google.com"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
if you like Wink