Conditional IF Statement in HTML
Hi Everyone
I am getting ready to launch a new site however Internet Explorer is messing up the CSS. The CSS works fine in Chrome, Safari and Firefox.
One of my friends suggested I use a Conditional IF statement and create a separate CSS stylesheet.
I have created a separate CSS sheet and used the following code to link it just for IE:
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="IE-ONLY.css"/>
<![endif]-->
Then placed the original stylesheet underneath this.
For some reason IE is not picking up this action.
Can anyone offer an suggestions please ??????
Thanks in advance :)