ChrisHammond / HammerFlex

Another free open source skin for DNN (DotNetNuke) using Bootstrap 3 grab the latest release from the RELEASES tab. https://github.com/ChrisHammond/HammerFlex/releases
http://www.christoc.com/Projects/HammerFlex
MIT License
30 stars 22 forks source link

Menu's don't expand on hover. #19

Closed dazinator closed 9 years ago

dazinator commented 9 years ago

A menu item with children - you have to click on it to expand it - and most of the time when I click it, it navigates me to that page rather than expanding to show the children.

Is there any way this can be fixed to get the hover event working, for non touch devices?

ChrisHammond commented 9 years ago

The Skin's menu is designed to be most mobile friendly, so I build all my sites with the pages that have submenu items to be clickable (disable the pages themselves).

You can enable hover with CSS

ul.nav li.dropdown:hover > ul.dropdown-menu { display: block; }

dazinator commented 9 years ago

Thanks Chris, this sorted it.