THANKS.
so in order to create a custom menu, besides the contents of the menu table, what do i need to change? like im sure i change "id="usercptools"" to what the new menu is called? then do i also change this: "vbmenu_register("usercptools");" to the name for the new menu?
tell me why this doesnt work:
Code:
<!-- MENU: NAVBAR TABLE -->
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td id="about" class="vbmenu_control">ABOUT<script type="text/javascript"> vbmenu_register("about"); </script></td>
</tr>
</table>
<!-- /MENU: NAVBAR TABLE -->
<!-- MENU: ABOUT-->
<div class="vbmenu_popup" id="about" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">ABOUT</td></tr>
<tr><td class="vbmenu_option">1</td></tr>
<tr><td class="vbmenu_option">2</td></tr>
<tr><td class="vbmenu_option">3</td></tr>
</table>
</div>
<!-- /MENU: ABOUT -->