At the top of my classic asp page, I have a the following code to select the relevant stylesheet depending on which browser is being used: -
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="../styles/main-ie6.css" /><![endif]-->
<!--[if gt IE 6]><link href="../styles/main.css" rel="stylesheet" type="text/css" />
<!--[else]><link href="../styles/main.css" type="text/css" rel="stylesheet" /><![endif]-->
The problem is that when the site is loaded in Google Chrome, no stylesheet is picked up.
Does anyone know how to get round this?
Many TIA