Modifying dropdown menu behavior

Can you please indicate how to change the dropdown-menu even handler from onMouseDown (or is it onClick?) to onMouseOver? In other words, I would like to see my sub-menus appear when the mouse rolls over the list elements of the main menu oppose to needing a click of the mouse to make them appear. I tried hunting through all the JavaScript files included with your theme and all I got for my trouble was a headache :^)

I would also like to abandon the fade-in/fade-out attribute associated to the list elements of the main menu in favor of a bit more responsiveness when rolling over those menu tabs.

Other than that, your theme is working out very well so far with my fledgling Jigoshop store.

Thank you very much,
55don

Hi @55don

I hope you are well today and thank you for your question.

You can achieve this by using the following CSS code as described on this page http://freewptp.com/tutorials/how-to-use-custom-css-in-wordpress-site/

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

.navbar-nav a {  
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

Best Regards,
Movin