Reputation: 204
I have made a website using twitter bootstrap.
Everything is working well on all browsers except Internet Explorer. The Navbar background image does not appear in all versions of Internet Explorer and black background is shown instead.
Apologies for not posting link.
The site link is http://www.dreamsmedia.org/ajmat/index.html
Upvotes: 0
Views: 73
Reputation: 59779
In your bootstrap.css
file, look for the .navbar-inverse .navbar-inner
selector and delete:
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
And on .navbar-inner
delete:
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
Upvotes: 1