I found this good little article regarding how to add a drop down to your navbar.
http://www.vbulletin.com/forum/newre...ote=1&p=769703
I've used this tutorial to create a new drop down on my navbar, It does appear on the navbar, however, when clicking on the menu, the drop down appears on the left side of the cell, rather than the center, like my other drop downs.
I can't seem to find the correct verbiage to resolve this.
I'd appreciate any direction.
here are the relevant bits.
Code:
<td id="mypopupmenu" class="vbmenu_control"><a href="#mypopupmenu">MENU TITLE</a><script type="text/javascript"> vbmenu_register("mypopupmenu"); </script></td>
Code:
<!-- mypopupmenu -->
<div class="vbmenu_popup" id="mypopupmenu_menu" style="display:none;margin-top:3px" align="$stylevar[left]"><table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">MENU TITLE</td></tr>
<tr><td class="vbmenu_option"><a href="URL">LINKED TEXT</a></td></tr>
</table>
</div>
<!-- / mypopupmenu -->