MyBB Community Forums

Full Version: change Help link in the header ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello
i want change Help link and text in the header ?
any advice ?
[Image: pic.php?u=1OTXwM&i=31]
change it from, ACP >> Templates >> Header Templates >> header

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
thank you
where should i add my homepage link ?
in the same template, find

<ul class="menu top_links">

and add the homapage link right after it....

<li><a href="{$mybb->settings['bburl']}/index.php" style="background: none;" class="home">HOME</a></li>
sorry bro its not work
i want add this link
www.autosport.me
Instead of /misc.php?action=help

what should i do ?
Change this....

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>

to this....

<li><a href="http://www.autosport.me" class="Home">Home</a></li>
thank you sir
the home text colur is blue .. how to make it white ?
ACP >> Themes >> Default/Your Theme >> global.css >> Edit in advanced mode

and add this to the end of global.css file.. save it and hard refresh (Ctrl+F5) the forum

ul.top_links a.Home {
color: white;
}
thank you cery much
its work fine Big Grin