Background-color displaying incorrectly in IE8 and IE9


I have a megamenu that works perfectly in Chrome, Firefox and IE10. However in versions IE9 and below there is a problem with the background-color property of the menu bar - instead of being a dark gray, it is showing as white. I am using a custom css file to modify the T3v3 framework css file and the bootstrap css file The URL in question is www.minsteadtt.org - it is using the T3v3 framework. The css for the property in question is as follows:

.t3-mainnav {
  background-image: none;
  background-color: #676767; 
  border: none;
  font-size: .9em;
}

Can anyone explain why the dark gray property is not registering in IE8 and 9?


Add filter: none; to your t3-mainnav class. That should fix it!

.t3-mainnav {
  background-image: none;
  background-color: #676767; 
  border: none;
  font-size: .9em;
  filter: none !important;

}


source - http://stackoverflow.com/questions/19127161/background-color-displaying-incorrectly-in-ie8-and-ie9


'Development > CSS' 카테고리의 다른 글

css - z-index  (0) 2014.05.15
css - position absolute center  (0) 2014.05.04
css - placeholder color  (0) 2014.04.27
css3 - transition  (1) 2014.04.27
css - 미디어쿼리(media query) @media  (0) 2013.11.19
Posted by linuxism
,