Harish Chouhan
Harish Chouhan

Reputation: 204

Nav bar of a website created using Twitterbootstrap not working in Internet Explorer

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

Answers (1)

Adrift
Adrift

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

Related Questions