In order for the drop down script to work you need several things: The ID, the script and menu variables. Experiment with the following (for navbar template):
Place wherever you want it to show.
Code:
<td id="mymenu" class="vbmenu_control"><a href="$show[nojs_link]#mymenu" accesskey="3">My Menu Test</a> <script type="text/javascript"> vbmenu_register("mymenu"); </script></td>
Find
Code:
<!-- NAVBAR POPUP MENUS -->
Add after:
Code:
<!-- mymenu -->
<div class="vbmenu_popup" id="mymenu" style="display:none" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">My Drop Down Menu Section 1</td></tr>
<tr><td class="vbmenu_option"><a href="#">Link 1</a></td></tr>
<tr><td class="vbmenu_option"><a href="#">Link 2</a></td></tr>
<tr><td class="vbmenu_option"><a href="#">Link 3</a></td></tr>
<tr><td class="thead">My Drop Down Menu Section 2</td></tr>
<tr><td class="vbmenu_option"><a href="#">Link 1</a></td></tr>
<tr><td class="vbmenu_option"><a href="#">Link 2</a></td></tr>
</table>
</div>
<!-- / mymenu -->
The ID in
red is key. That will identify each drop down code; no two should have the same ID in a page. So if you want to create another menu change "mymenu" in all places and add something like "articles".
The drop down code example can be applied to any template.