MyBB Community Forums

Full Version: how to make forum icon redirect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I make the forum icon redirect to a different website when I click on it?
header template of the theme consists of code like below
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
it can be changed like
<a href="required-site-url"><img src="{$theme['logo']}" alt="" title="" /></a>
How can I make the redirect open in a new tab?
^ you can add target="_blank" like below
<a href="required-site-url" target="_blank"><img src="{$theme['logo']}" alt="" title="" /></a>