I can\'t seem to change the background color of my navbar in IE9. The site uses Twitter-Bootstrap
Here is the website: http://iioengine.com/
The top navbar h
This is being caused by a MS filter gradient on .navbar-inverse .navbar-inner {}
filter
.navbar-inverse .navbar-inner {}
The solution is to override this with none in your own stylesheet:
none
div.navbar-inverse .navbar-inner { filter: none; background-color: none; }