Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap IE background color issue

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 has a white background in every browser other than IE. It's black in IE. I've tried targeting every part of the element with CSS but nothing has effected its color in IE.

I've also set background-image to none in all relevant classes

Anyone know what the issue is or what I need to target? IE is driving me crazy.. Thanks

SOLUTION:

.navbar-inverse .navbar-inner{
  filter:none;
  background-color:white;
}
like image 929
Cbas Avatar asked Apr 09 '13 19:04

Cbas


1 Answers

This is being caused by a MS filter gradient on .navbar-inverse .navbar-inner {}

The solution is to override this with none in your own stylesheet:

div.navbar-inverse .navbar-inner {
    filter: none;
    background-color: none;
}
like image 66
Adrift Avatar answered Oct 17 '22 21:10

Adrift