Solein

Customer
Second navbar as seen here

Sorry if asked before or this is not the forum to ask,

What's the mod or how can I make a second navbar with tabs as seen at Dragonbyte site?

secondnavbar.jpg


I'm really in need of this additional bar.
 
Last edited:
You can try this mod from vb.org
Code:
http://www.vbulletin.org/forum/showthread.php?t=240764&highlight=second+navbar
 
You can try this mod from vb.org
Code:
http://www.vbulletin.org/forum/showthread.php?t=240764&highlight=second+navbar

Thanks Ozzy, I will give a try on this one (seems pretty outdated and unsupported at vBulletin.org)
 
Actually, this is template edit. :)

Take a look at you navbar template, you'll see it's unordered list, you add different list items and that's pretty much it. Depends how exactly you want yours to look like, but you can take a look at the source of this one on DragonByte's.
 
I have sort of got this mod for the second navbar working on my site, but it always shows as selected / highlighted that's the only thing i cant work out, so if anybody knows how to fix it, help would be greatly appreciated..
 
<!-- start navbar2 -->
<div id="navbar" class="navbar">
<ul id="navtabs2" class="navtabs floatcontainer<vb:if condition="$show['member'] AND $notifications_total"> notify</vb:if>">
{vb:raw template_hook.navtab2_start}

<!-------this part is navtabs2----------------->

<li class="selected"><a class="navtab" href="http://www.bowluk.com/vbshop.php?169
{vb:raw session.sessionurl_q}">VBShop</a></li>

<li class="selected"><a class="navtab" href="http://www.bowluk.com/arcade.php?169
{vb:raw session.sessionurl_q}">Arcade</a></li>

<li class="selected"><a class="navtab" href="http://www.bowluk.com/piratepoker.php?169
{vb:raw session.sessionurl_q}">Poker</a></li>

<li class="selected"><a class="navtab" href="http://www.bowluk.com/albumall.php?169
{vb:raw session.sessionurl_q}">Gallery</a></li>

{vb:raw template_hook.navtab2_end}
</div>

</ul></div>
 
Ok try and remove the <li class="selected"> and replace with <li> at he beginning of the four tabs.
 
Top