Skip to content
Snippets Groups Projects
Commit 098351b7 authored by Andy Konwinski's avatar Andy Konwinski
Browse files

Makes nav menu dropdowns show on hover instead of on click.

parent 8d30fe61
No related branches found
No related tags found
No related merge requests found
......@@ -41,3 +41,16 @@ code {
.container {
max-width: 914px;
}
/**
* Make dropdown menus in nav bars show on hover instead of click
* using solution at http://stackoverflow.com/questions/8878033/how-
* to-make-twitter-bootstrap-menu-dropdown-on-hover-rather-than-click
**/
ul.nav li.dropdown:hover ul.dropdown-menu{
display: block;
}
a.menu:after, .dropdown-toggle:after {
content: none;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment