Here is my site: http://defend-foreclosure.com/index.html
I can't get the list items in the dropdown for "law" to change any color but blue when I hover over them. Can anyone tell me what element in the CSS I need to edit? I've been testing all sorts of elements in both bootstrap.css and bootstrap.min.css with no luck.
Don't change bootstrap.css. Create another css file where you can override this. Anyway, the line is 4572:
.dropdown-menu li > a:hover, .dropdown-menu li > a:focus, .dropdown-submenu:hover > a
Set background-image to none, and background-color to whatever color you want.
If you also intend to change the color of a selected element, you should take care of the active class of the li element:
.dropdown-menu li.active > a,
.dropdown-menu li.active > a:hover,
.dropdown-menu li.active > a:focus {
...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With