I am looking to have all my dropdown menus appear on hover in any of the menu items. I currently have this code snippet:
ul.nav li.dropdown:hover ul.dropdown-menu{
display: block;
}
The problem is that it only works for one menu item at a time, depending on where my mouse is hovering. Is there a way to make all dropdown menus show up together? Thank you for your assistance!