MyBB Community Forums

Full Version: adding a link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i just installed this mypBB in a subdomain, how do i make a menu as "home" to give a link to my home page www.mywebsiteexample.com when click to the "home" menu.
thanks in advance+ sorry for my poor english
admin panel >> templates >> your theme templates >> header templates >> header

you can see links coded like below
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>

you can add required links like below within the set of links
<li><a href="path-to-link">link-text</a></li>

edit: see also this guidance