Basically, i have alterd my site recently, and now some things dont work in internet explorer 6. They work fine in opera, firefox and ie7.
Now, can i have ie6 and ie7 installed on the same pc? Because i need to test my site with ie6 and make modorations.
Also, i have custom stylesheets for different browsers. Basically i have this...
<link href="http://www.kedoa.com/css/style.css" rel="stylesheet" type="text/css" /> <!--[if IE 6]> <link href="http://www.kedoa.com/css/style_ie6.css" rel="stylesheet" type="text/css" /> <![endif]--> <!--[if IE]> <link href="http://www.kedoa.com/css/style_ie.css" rel="stylesheet" type="text/css" /> <![endif]-->
The top one is the main stylesheet, and then if the browser is ie6, then it still uses everything from the main stylesheet, but whatever is in the ie6 stylesheet overwrites what the main stylesheet says.
And then i have a ie stylesheet.
Now, is the code abouve right? And also, does the ie6 stylesheet need to come after the ie stylesheet?