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
Simply customize your CSS style in three lines of code
.dropdown:hover .dropdown-menu { display: block; }