2 users online. Create an account or sign in to join them.Users
<!--[if lte IE 7]>
This is an open discussion with 1 reply, filed under Troubleshooting.
2 users online. Create an account or sign in to join them.Users
This is an open discussion with 1 reply, filed under Troubleshooting.
Symphony • Open Source XSLT CMS
--with-xsl)
I have an IE7-workaround in my site as such:
<!--[if lte IE 7]> <link rel="stylesheet" type="text/css" media="screen,tv,projection" href="css/ie7.css" /> <![endif]-->In my template I have it like this:
<![CDATA[ <!--[if lte IE 7]> <link rel="stylesheet" type="text/css" media="screen,tv,projection" href="css/ie7.css" /> <![endif]--> ]]>But when I do this, the html-code gets converted to readable entities instead of leaving the brackets intact. So my source looks like this:
<!--[if lte IE 7]> <link rel="stylesheet" type="text/css" media="screen,tv,projection" href="css/ie7.css" /> <![endif]-->How can I leave my brackets intact for my IE7-Hack?