How can I change the background color of a Bootstrap dropdown?
background-color, css, drop-down-menu, twitter-bootstrap
Solution
Use this
.navbar-nav > li > .dropdown-menu { background-color: #FF0000; }
Problem
At the moment i am using this template: http://getbootstrap.com/examples/navbar-fixed-top/ Is there any way to give the background in the dropdownmenu (The one that pops up, when the navbar collapses) another color than the navbar itself? What i tried so far is this, without success: ``` .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555555; background-color: #e7e7e7; } ```