I've seen a lot of people here asking how to add drop down menu tabs, so I thought I'd share how I did it.
To add a drop down menu tab, first you need to edit the HEADER template. For my site I added a custom drop down menu tab right after the Forum tab so if you want your tab in a different place than mine you will have to place it before or after the existing tabs you want it.
1. In HEADER template Find:
HTML Code:
<li><a href="$vboptions[forumhome].php$session[sessionurl_q]"><span>Forum</span></a></li>
Paste the following below it:
HTML Code:
<li><a id="extratab" href="$show[nojs_link]#extratab"><span>Extra Tab</span></a><script type="text/javascript"> vbmenu_register("extratab", 1); </script></li>
2. In the NAVBAR template find:
HTML Code:
<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->
Paste this below it:
HTML Code:
<!-- extratab link menu -->
<div class="vbmenu_popup" id="extratab_menu" style="display:none;margin-top:3px" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">Extra Tab</td></tr>
<tr><td class="vbmenu_option"><a href="http://www.yourlink.com">Link 1</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://www.yourlink.com">Link 2</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://www.yourlink.com">Link 3</a></td></tr>
<tr><td class="vbmenu_option"><a href="http://www.yourlink.com">Link 4</a></td></tr>
</table>
</div>
<!-- / extratab link menu -->
Edit the links as you need for your site above. Enjoy! :up: