Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to replace the background image for a Twitter Bootstrap navbar with my own image. It works in Chrome, Firefox, and Safari but not in Internet Explorer. What am I missing for IE? (It remains the plain black in IE)

.navbar.navbar-inverse.navbar-fixed-top .navbar-inner {
    background: url(/assets/navbar.png) repeat-x;
    box-shadow: none;
    border: none;
    -webkit-box-shadow: none;
}
share|improve this question

1 Answer

up vote 8 down vote accepted

You need to add this:

filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
share|improve this answer
wow, thank you so much! WTF is that even doing? I've never seen it before. – Matthew Boston Dec 30 '12 at 6:33
2  
You're welcome! The code in my answer is just disabling the gradient that was set by Bootstrap. The "Use CSS3, not DX Filters" section of this blog post has a good description of DX Filters. – Adam Taylor Dec 30 '12 at 6:44
1  
filter:none solved for me, as pointed out here. – rapcal Apr 4 at 23:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.