Just finished playing with this myself.
I've added a drop down menu on the 2nd navbar for easy navigation to sub forums. Looks good even if I do say so myself lol.
@mystic10
To add links that are only visible to certain usergroups, you can do the following...
Code:
<if condition="is_member_of($bbuserinfo, 5, 6, 7, 9, 10)">
<tr><td class="thead"><a href="forumdisplay.php?f=1$session[sessionurl_q]">Section 1</a></td></tr>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?f=2$session[sessionurl]">Section 2</a></td></tr>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?f=3$session[sessionurl]">Section 3</a></td></tr>
</if>
...where 5, 6, 7, 9, 10 are the usergroup ids.
Working demo at
http://www.digital-kaos.co.uk/
@REVHEADS
Here is the code for the register link...
Code:
<if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php$session[sessionurl_q]" rel="nofollow">$vbphrase[register]</a></td>
</if>
Insert it after...
Code:
<!-- nav buttons bar -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_cp]</a></td>
</if>
Hope this helps.
-Glen