MyBB Community Forums

Full Version: Navbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i make Navbar like this website did?
Are you asking how to make one? Or how to insert it?
what's the different make or insert but however i just wanted to know how to do like below my banner links come like

Home Forums Link1 Link2
Please someone give me correct answer how do i add Links below my forum header and which template should i edit
You've to edit header template. You may use this: http://www.cssmenumaker.com/ to include CSS and HTML in your header.
thanks i need just simple text link and could you please confirm me which link should i edit for adding text link
If you mean;
Quote:Search Member List Calendar Help
Then here is how;

ACP >> Templates & Style >> Templates >> Your theme's templates >> Header Templates >> header

Find:
<ul class="menu top_links">
<li><a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>

Add the following code just before </ul> tag:
<li><a href="LINK_URL" class="LINK_CLASS">LINK_NAME</a></li>

Replace LINK_CLASS with the accompanying page name.

Create the class in global.css using "#panel .upper ul.top_links a.LINK_CLASS" with the rules in there. Smile