MyBB Community Forums

Full Version: Nav Bar Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: ngOPiV.png]

Hey Guys, how Can I add a link to the top nav bar?
I guess you want to add the "New Posts" link Wink

AdminCP -> Templates & Style -> Templates -> your Theme -> Header Templates -> header_welcomeblock_member

add after "{$lang->welcome_back}"
 (<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>)
(2012-01-28, 06:34 PM)Harest Wrote: [ -> ]I guess you want to add the "New Posts" link Wink

AdminCP -> Templates & Style -> Templates -> your Theme -> Header Templates -> header_welcomeblock_member

add after "{$lang->welcome_back}"
 (<a href="{$mybb->settings['bburl']}/search.php?action=getnew">{$lang->welcome_newposts}</a>)

Thank you so much mate! Is there a way I can change the color of it?
sure. the fastest and most simple way would be something like this.
(<a href="{$mybb->settings['bburl']}/search.php?action=getnew" style="color:red;">{$lang->welcome_newposts}</a>)

Just change "color:red;" to anything you want.
Best practice would be to use color codes (use the html color picker).
You'll find there a field that will display six digits. The color code for red would be "color:#FF0000;".