0

http://neeyamo.com/

the above website displays hidden layouts in ie8. Which are meant to display only in low screen resolution. i used "display:none" using css media query. It works fine in other browsers. But in IE8, it does not work.

3 Answers3

0

may be you can use $("#idofdiv").hide() in jquery in document.ready()

0

Css media queries are not supported by IE8 but there are ways to get around IE7, IE8 support for css3 media query

Community
  • 1
  • 1
Remo H. Jansen
  • 23,172
  • 11
  • 70
  • 93
0

Try something like

<!--[if lte IE 8]>
<style type="text/css" media="screen">
/*
.yourclass { display: none; }
</style>
<![endif]-->