MyBB Community Forums

Full Version: how do you customize the tabs at the top of your site??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do i add tabs and take out the search, Member list , calender, and help i dont want that. I just want the tabs
You're asking in the wrong forum...

You simply disable things like calendar in the Admin CP; and then remove the rest from the header template.
(2011-05-11, 01:35 AM)Alex Smith Wrote: [ -> ]You're asking in the wrong forum...

You simply disable things like calendar in the Admin CP; and then remove the rest from the header template.

soz i dont know were i would of put this and thankz!
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>
Please do not open multiple threads regarding the same problem.