I can’t seem to get my site to redirect IE 6 and 5.5 to my alternate .CSS file. They just never load it. I am a little new to CSS. Can’t I somehow enter my alternate element styles for IE 6 and 5.5 within my main style sheet with “*” ?
Here is what I have in the head section of my index.asp :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<link rel="stylesheet" href="tex.css" type="text/css">
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" href="ietex.css">
<![endif]-->
</head>
Is this correct? I’ve tried so many combinations of that. I tested the site on IE6 and it never loads ietex.css. The site is http://www.readingnowerie.com and the main style sheet is “tex.css” at the root. What am I doing wrong? Thanks!