Admin CP -> Styles & Templates -> Style Manager -> ? ? -> Navigation / Breadcrumb Templates -> navbar
Find this code and add the green code:
Code:
<if condition="$show['popups']">
<if condition="$show['searchbuttons']">
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
<else />
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
</if>
<td id="navbar_search" class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
</if>
<if condition="$bbuserinfo['userid']">
<td id="usercptools" class="vbmenu_control"><a href="#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td>
</if>
<td id="mypopupmenu" class="vbmenu_control"><a href="#mypopupmenu">MENU TITLE</a> <script type="text/javascript"> vbmenu_register("mypopupmenu"); </script></td> <else />
<if condition="$show['searchbuttons']">
Change the MENU TITLE appropriately.
Then in that same template, scroll to the very bottom. Add the the green code:
Code:
</table>
</div>
<!-- / user cp tools menu -->
</if>
<!-- mypopupmenu -->
<div class="vbmenu_popup" id="mypopupmenu_menu" style="display:none">
<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 -->
<!-- / NAVBAR POPUP MENUS -->
</if>
Change the MENU TITLE, URL, and LINKED TEXT appropriately. Add more instances of the black code within the green code to add more links to the popup menu.
Or to add more popup menu redo the steps adding the code again and changing mypopmenu to mypopupmenu2 and then all the other one associated with it
Originally posted in vBulletin.com by Jake Bunce