php - Magento css condition for !IE -
i try include css file like
<action method="additem"><type>skin_css</type><name>css/style.css</name><params/><if>!ie</if></action>
to condition
<!--[if !ie]><!--> <link rel="stylesheet" type="text/css" href="css/style.css" /> <!--<![endif]-->
how can it? or exist method include when it's not ie?
thank help! it's first ever magento theme ^^
conditional comments rendered. (and contents') evaluation depends on browser being <= ie9. there no source conditional comment works non-ie browsers. suppose javascript or php (relying on unreliable user-agent) point have wrong problem.
Comments
Post a Comment