This is rather easy if you just copy the code that's already there in the Navigation/Breadcrumbs => Navbar Template.
I wanted to add a Gallery link to my nav bar. I added this:
Code:
<!-- Gallery Link Addon -->
<if condition="$show['popups']">
<td id="gallery" class="vbmenu_control"><a href="#gallery"><font color="#ffcc00">Galleries</font></a>
<script type="text/javascript"> vbmenu_register("gallery"); </script></td>
</if>
<!-- END Gallery Link Addon -->
At the bottom of that same template I added:
Code:
<!-- Gallery Addon Menu -->
<if condition="$show['searchbuttons']">
<!-- header Gallery Links-->
<div class="vbmenu_popup" id="gallery_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Gallery Links</td></tr>
<tr><td class="vbmenu_option"><a href="http://www.YOURSITE.com/gallery/">Member Gallery</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://www.YOURSITE.com/premiere_gallery/">Premiere Gallery</a></td></tr>
</table>
</div>
<!-- / header gallery Links-->
</if>
<!-- END Gallery Addon Menu -->
This code created the Gallery PULL DOWN you see in the attached image.
Aceman