I have a very interesting issue with one of the websites I created. It renders fine in Safari, Chrome, Opera, FF, IE7&am开发者_运维技巧p;8 but IE6 does not seem to recognize my stylesheet. I'm not using @import for loading, so it's not a case a FOUC.
The website is using Wordpress but never had an issue like this before with WP.
I might be missing out on something stupid here, can find the problem though.
Any help, suggestion would be very much appreciated.
The website is: http://www.magashegyiturak.ro
IE6 is currently choking on your <meta name="description">
tag. The tag currently contains many out-of-range characters for UTF-8 (above or at 0xF5
)
Removing/fixing your <meta>
tag enables IE6 to render your page properly again.
Try commenting out parts of the CSS till it works and then you can narrow it down to a few lines. You could try commenting the whole thing and do a simple CSS call to see if you can do something at least.
精彩评论