XF 1.5 Rollover menus drop downs on hover?

slewis1972

Member
Hi

Unable to locate so far if doable, using a pixelexit template, and wondered, the menus on the main toolbar, instead of having to click the arrove on the right of them to get the drop down menu, is there a way to get it to autmatically drop down on hover?

Thanks
 
It can be easily changed by absolutely positioning .SplitCtrl above .navTab element:

Code:
.navTabs .navTab.Popup { position: relative; }
.navTabs .navTab.Popup.selected { position: static; }
.navTabs .navTab.Popup .SplitCtrl:last-child { position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: 0; width: auto; height: auto; float: none; opacity: 0; }
or something like that.
 
Top Bottom