Reputation:
CSS is not loading for my site on IE7 for some unknown reason. Its working fine for IE8, chrome and mozilla. You can see the website at www.fineartsbaroda.com
Upvotes: 1
Views: 178
Reputation: 159
Is this answer resolved?
If not, I was going to suggest putting media="screen" for the default.css stylesheet link.
Upvotes: 1
Reputation: 739
I suspect that it's because of ::-moz-selection.
css selection is not working in IE
You may need to add a conditional work-around/hack using something like
<!--[if gt IE 8]>
<![endif]-->
Upvotes: 0