Edit Drop Down Menu::
This is the start of the drop down menu: (index.template.php)
<div class="menu_button_div_background">
Remove Drop down menu:
SELECT ALL BETWEEN: (index.template.php) - (and delete)
<div class="menu_button_div_background">
AND:
</div>
Edit Drop down menu:
FIND: (index.template.php)
<a class="chosen" href="#"><span>', $txt['vp_menu_item_one'] ,'</span></a>
EDIT TO:
<a class="chosen" href="http://www.visualpulse.net/"><span>Custom Tab</span></a>
Add sub menu to item:
FIND:
<li>
<a class="chosen" href="#"><span>', $txt['vp_menu_item_one'] ,'</span></a>
ADD AFTER:
<ul>
<li>
<a href="#"><span>', $txt['vp_sub_menu_item_one'] ,'</span></a>
</li>
<li>
<a href="#"><span>', $txt['vp_sub_menu_item_two'] ,'</span></a>
</li>
</ul>