As the title indicates, I am having some problems with ie (who isn't). I am creating a CSS layout and see that my layout isn't the same for FF and IE so I wanted to make one for IE to be called if the user is using that browser. After searching the web I found the hack to implement this but it isn't working.
This one is for greater than or equal to ie 6.
<!--[if gte IE 6]>
<link rel="stylesheet" type="text/css" href="iespecific.css" />
<![endif]-->
One for ie 6 only.
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="iespecific.css" />
<![endif]-->
The others are similar. Here is the ref site:
http://www.thesitewizard.com/css/excludecss.shtml
here is my test page (for now):
http://www.digitaloverlay.com/rd/index2.htm
Thanks gang for helping me out.