Home › Support Forums › Theme Support › Enlightenment › Dropdown on hover menu possible? › Reply To: Dropdown on hover menu possible?
Daniel Tara
Keymaster
In your child theme’s functions.php file add this code:
remove_filter( 'wp_nav_menu_objects', 'enlightenment_bootstrap_menu_parent_class' );
Then in your custom styles add these rules:
.menu-item-has-children:hover .sub-menu { display: block; }