Hello
i want change
Help link and text in the header ?
any advice ?
![[Image: pic.php?u=1OTXwM&i=31]](https://camo.mybb.com/950ed49cd0951077c1b99edfedbadd445767e984/687474703a2f2f696d732e73706f7274736f6e7468657765622e6e65742f696d732f7069632e7068703f753d314f5458774d26616d703b693d3331)
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;
}