MyBB Community Forums

Full Version: Add more buttons below the logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i add the "Staff Roaster" in this listing below the forum logo.

i want to add button . How?

[Image: 0d96bca04b.png]
ACP >> Templates >> Header Templates >> header find the menu part...

<ul class="menu top_links">
{$menu_portal}
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>


add a new li as you wish like this...

<ul class="menu top_links">
{$menu_portal}
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
<li><a href="ENTER LINK HERE" class="Staff">Staff Roster</a></li>
</ul>
Thank you very much sir!  Its working but the icon is same in Search button.

How could i change it?
[Image: 03d9b3de67.png]

					
<ul class="menu top_links">
{$menu_portal}
<li><a href="http://eager-host.esy.es/showteam.php" class="Roaster">Admin/Staff Roaster</a></li>
{$menu_search}
{$menu_memberlist}
{$menu_calendar}
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>

Thanks in advance sir!
Add the image you want show before "Staff Roaster" link into /images/ folder at server.

Replace in header template:

<li><a href="http://eager-host.esy.es/showteam.php" class="Roaster">Admin/Staff Roaster</a></li>

with:

<li><a href="http://eager-host.esy.es/showteam.php" class="roaster" style="background-image: url(images/YOUR-IMAGE-NAME.png);">Admin/Staff Roaster</a></li>