0

I want to add conditional style sheet to IE browser.I have tried to add it in themes html.tpl.php file as

<!--[if IE]><link rel="stylesheet" type="text/css"  href="themes/themeName/css/ie_style.css"></link><![endif]-->

this file path is also correct but not included for IE browser.

Abhishek Pandey
  • 13,302
  • 8
  • 38
  • 68
user3386779
  • 6,883
  • 20
  • 66
  • 134

1 Answers1

1

Try this one, It will target all IE browsers below VERSIONS of IE 7.

<!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="themes/themeName/css/ie_style.css"></link><![endif]-->