forward from: http://www.vbulletin.com/forum/forum.php?mod=viewthread&tid=89230
Is there a way to add another drop down menu to the navbar?
Yes it is.
Find in the template navbar this:
PHP Code:
<!-- nav buttons bar -->
Below this the menu-points are defined. To add your own menu-point insert this:
PHP Code:
<td id="mymenu" class="vbmenu_control"><a href="#mymenu">My Menu</a> <script type="text/javascript"> vbmenu_register("mymenu"); </script></td>
Then go to the bottom of the template and find
PHP Code:
<!-- / NAVBAR POPUP MENUS -->
</if>
Before this add:
PHP Code:
<!-- My Menu -->
<div class="vbmenu_popup" id="mymenu_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">First selectionpointGameserver</td></tr>
<tr><td class="thead">Second selectionpoint</td></tr>
</table>
</div>
<!-- / My Menu-->
|