Hi,
To create individual css only for IE, i create a css file and check if current browser is IE i link to this file, there styles affect only for IE.
exm: i want override template.css i did as following:
– Create file “template-ie.css” on same folder, and define style only for IE.
– On html code after require link “template.css”, add the conditionnal commant
<link type="text/css" href="templates/my template name/css/template.css" rel="stylesheet">
<!-->
<link type="text/css" href="templates/my template name/css/template-ie.css" rel="stylesheet">
<!-->
You can find more about css conditional commants on site http://www.quirksmode.org/css/condcom.html