flexnav
flexnav copied to clipboard
Highlight Parent when hover on the submenu
As other menu shows the hightlight of it's parent or anccesstor when we go to submenu this feature will be great. and it would be easy to know on what menu we are right now.
thank you
I was just coming here to share my fix for this. It's really easy. Just add the following to lines 48 and 55:
$(this).addClass("hovered");
Then add the following to lines 64 and 71:
$(this).removeClass("hovered");
Then you can obviously add the class to your CSS.
This can be achieve purely in css (www.dewittehoeve.com)
It's easy to achieve by adding ".flexnav li a:hover" in css:
.flexnav li a:hover { background-color: #7f7f7f; text-decoration: underline; }