MyBB Community Forums

Full Version: Adding External links to To Menu bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I add external links within the top menu bar please?
I searched and found some answer which show how to add those links below the menu (via header template) but it not what I need.
I'm using Flame Red template with latest version of Mybb
ACP >> Templates & Style >> Templates >> Apart Flame (I assume) >> 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:
<li><a href="{$mybb->settings['bburl']}/yourpage.php class="yourpage">My link</a></li>

Replace yourpage with the accompanying page name.

Create the class in global.css using "#panel .upper ul.top_links a.yourpage" with the rules in there. Smile
Great! Thanks very much Smile