This is the discussion about how to make the Dropdown menu Hover dropdown instead of click.

Bootstrap Dropdown menus are normally click function dropdown. that means when click on the parent menu Item then the submenu Item shows. If you follow the instraction to make the menu hover dropdown. It’s very simple.

Just go to your stylesheet and write the code below,

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

To apply this code, make sure that you didn’t change anything from the default Bootstrap nav menu.

keep learning