MyBB Community Forums

Full Version: link to my site home page into the header of a forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,
my forum is there
http://www.surway.xyz/forum/
and I need to put a link to the home page http://www.surway.xyz/ into the header of my forum.
I think the best place for that is the logo picture in the left-top corner, so I want it refers to surway.xyz, not to surway.xyz/forum/.
Could you suggest, please. MyBB Version 1.8.11
forum admin panel >> Templates & Style >> Templates >> Default Templates >>
Header Templates >> header

header template of the theme consists of code similar to below
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>

link code <a href="{$mybb->settings['bburl']}/index.php"> can be changed to suit your requirement
<a href="http://www.surway.xyz">

[templates guidance]
thanks, it works!