Quote:
Originally Posted by muscle-mustangs
I really want this hack, but can someone show me how I would find and add the navbar like this site has it: (you see how its directly above the login and is the same size? http://www.rs25.com
I hope one of you could help me out on this 
|
Here goes. I got this all set to work like you wanted.
Go to your ADMINCP/Style Manager.
Then in the style you want to use it in click on EDIT TEMPLATES.
Go down the list until you see Navagation /Breadcrumb Templates and double click it.
Double click Navbar.
Find:
PHP Code:
<!-- breadcrumb, login, pm info -->
Put this under that:
PHP Code:
<!-- Navbar on top of $navbar -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<!-- Links to put int new navbar -->
<td class="vbmenu_control"><a href="/index.php?$session[sessionurl]">Link 1</a></td>
<td class="vbmenu_control"><a href="/forum/index.php?$session[sessionurl]">Link 2</a></td>
<td class="vbmenu_control"><a href="/forum/index.php?$session[sessionurl]">Link 3</a></td>
<td class="vbmenu_control"><a href="/forum/index.php?$session[sessionurl]">Link 4</a></td>
<td class="vbmenu_control"><a href="/forum/index.php?$session[sessionurl]">Link 5</a></td>
<!-- / Links to put int new navbar -->
</tr>
</table>
<!-- / Navbar on top of $navbar -->
Of course you will have to change the the Link names and put the correct link in the lines.
If you have any problems with this let me know.