MyBB Community Forums

Full Version: Edit theme header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi. If you go here, you will see the header has Search, Member List, Calendar, and Help. But if I wanted to add something to that, I go to Edit Template, and I see these:

	<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">&nbsp;&nbsp;{$lang->toplinks_help}</a></li>

I want to add a link to another page on the forum (it's /helpcenter.php), but what do I need to change to do that?

Thanks
<li><a href="{$mybb->settings['bburl']}/helpcenter.php">Help Center</a></li> 


Or if you want the space between it:
<li><a href="{$mybb->settings['bburl']}/helpcenter.php">&nbsp;&nbsp;Help Center</a></li> 

Thanks, that worked perfectly!