MyBB Community Forums

Full Version: how to edit tabs
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, how can i edit a tab, where it says forum home, serach, members list etc i want to add a new one over there how can i do that which template do i look under? i wanna do it this way not the mytabs mod
Go to: Admin CP > Templates > Your theme's templates > Header templates > header > and find;
</ul>
and add the following code just before that,
<li><a href="{$mybb->settings['bburl']}/portal.php" title="Portal" alt="Portal">Portal</a></li>

You probably need to add image in front of Portal name, for this Replace above code with the following;
<li><a href="{$mybb->settings['bburl']}/portal.php" title="Portal" alt="Portal"><img src="IMAGE_LINK"> Portal</a></li>