I am having trouble with IE stylesheets. I have a few separate style sheets for my website- for ie6, ie7, ie8.
I am using a conditional comment to link my index.php to these stylesheets, and ie is not reading the styles.
This is the code for my condintional comment:
<!--[if IE 8]>
<link href="style-ie8.css" rel="stylesheet" type="text/css" />
<![endif]-->
It's placed in the head of my doc, and the stylesheet is saved correctly, as style-ie8.css
The link to my site is http://www.pickpurple.org/
I would appreciate any help, as I've already googled... I cant come up with why this is happening...
Thanks!