I'm really new to Magento and really confused of what's going on in there. I need to fix IE 8 bugs so I create a new css file in my theme directory. I link the css file in the head.phtml with conditional css comment. So far so good. I clean all the cache, browser, magento. Disable the css files merge, flushing css cache. I see that the declaration "" is in the header. But when I write something in the file and refresh the page in IE 8 (in compatibility mode) changes does not take effect. I need some help guys. Thanks in advance!
This is what I've added to my head.phtml file:
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="/skin/frontend/ft001-sofia/mod/css/ie8-fix.css" media="all" />
<![endif]-->
Here's the website. You can see the head with Inspect Element:
http://dev.elmaira.bg/
<link rel="stylesheet" type="text/css" href="/cssmedia/394c6e8317d42dfb1676289c7c1b4308.css" media="all" />– Jan 27 '15 at 21:50System > Configuration > web/unsecure. If the backend says Merge CSS is "No", clear block html cache. There's clearly 2 css blocks with the IE8 conditional comment in your head and only one stylesheet in top section. It should be referring to skin directory for css, not media and there should be several if merging is off. – Jan 27 '15 at 21:56