Reply To: Dropdown on hover menu possible?

#19824
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;
}