Navbar drop downs menu's without drop down arrow icon

Andrew

Well-known member
How would I go about triggering the drop down menu on the website with out the use of the arrow icon in the navigation?

Also what is the syntax to add my own custom tab with a drop down menu? :)

Thanks,
Andrew
 
open navigation template:
Code:
                <a href="{$tabs.members.href}" class="navLink">{$tabs.members.title}</a>
                <a href="{$tabs.members.href}" class="SplitCtrl" rel="Menu"></a>
similar code used for each navbar-item so remove the 2nd line for each of them and change first to
Code:
class="navLink NoPopupGadget" rel="Menu"
example:
Code:
<a href="{$extraTab.href}" class="navLink NoPopupGadget" rel="Menu">{$extraTab.title}</a>

NoPopupGadget removes the dropdown-arrows for popups

for custom tabs I'm using: http://xenforo.com/community/threads/page-nav.13565/#post-183622
 
Top Bottom