Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap dropdown not working in IE8

I am using the Bootstrap framework to design my site. I have the drop down working in the navigation, but from some unknown reason in IE8 the dropdown does not work. When you click on the About Us link, the drop down does not fully appear. This only happens in IE8.

It works fine in other browsers.

You can view it here:

https://dl.dropboxusercontent.com/u/52725754/fightback-responsive/index.html

Can anyone help with this problem?

like image 554
legacyterror Avatar asked Apr 13 '13 11:04

legacyterror


2 Answers

Here is the solution to this issue on the Bootstrap GitHub forums: https://github.com/twitter/bootstrap/issues/6548. It seems as though native IE8 will sometimes break due to the filter: parameter which is used throughout Bootstrap css for gradients etc. The solution is to add filter:none!important; to an element like .navbar or .navbar-inner. The former worked out for me.

like image 143
mikegertrudes Avatar answered Sep 22 '22 16:09

mikegertrudes


I had a problem with drop down menus on IE8 using bootstrap 3.3.4. I managed to resolve the problem by using jquery version 1.11.2 instead of jquery version 2+.

like image 23
Jeff Collins Avatar answered Sep 24 '22 16:09

Jeff Collins