Navbar edit help

Open the navigation template.

Find:
HTML:
        <!-- members -->

Above that add:
HTML:
<li class="navTab PopupClosed"><a href="http://adminbb.info/index.php?account/upgrades" class="navLink">Sponsor Us</a></li>
 
Open the navigation template.

Find:
HTML:
        <!-- members -->

Above that add:
HTML:
<li class="navTab PopupClosed"><a href="http://adminbb.info/index.php?account/upgrades" class="navLink">Sponsor Us</a></li>

Why not use the right xenforo way of linking, so it's valid for all urls? And handy for users to copy/paste.

link account/upgrades
 
Why not use the right xenforo way of linking, so it's valid for all urls? And handy for users to copy/paste.

link account/upgrades
I just used his code as he posted it.
But yes, you're correct in that the code would be better off as:
HTML:
<li class="navTab PopupClosed"><a href="account/upgrades" class="navLink">Account Upgrades</a></li>
 
Top Bottom