Trying to add New navbar button

Hitsums

New Member
Hi im trying to add a new nav bar button but when i go to the navbar temple i see no such thing as

Code:
<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td>

as it says in my ibparcade guide anyway so i went to style manager and added this into the header
Code:
<td width="78" height="34"  class="css_nav"><a href="arcade.php$session[sessionurl_q]">$vbphrase[arcade]</a></td>

but the for some reason the button just stays black with no letters inside it i want it to say arcade T_T


Heres my Sites Link

Bankai - Powered by vBulletin
 
Replace your link with vbphrase :
PHP:
<td width="78" height="34"  class="css_nav"><a href="arcade.php$session[sessionurl_q]">$vbphrase[arcade]</a></td>

With this one, and Instead of Games Write Whatever you want, or leave word games ;)
PHP:
<td width="78" height="34"  class="css_nav"><a href="arcade.php?$session[sessionurl_q]" rel="nofollow">Games</a></td>
 
Back
Top