I\'d like to have my Bootstrap menu automatically drop down on hover, rather than having to click the menu title. I\'d also like to lose the little arrows next to the menu t
Just want to add, that if you have multiple dropdowns (as I do) you should write:
ul.nav li.dropdown:hover > ul.dropdown-menu { display: block; }
And it'll work properly.