I have been able to fix the problem using two style sheets, one for IE 6 and then one for IE 7.
This is the code I am using:
Code:
<!--[if IE 6]>
<link rel="stylesheet" href="alphaberryoldie.css" type="text/css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" href="alphaberrystyle.css" type="text/css">
<![endif]-->
<link rel="stylesheet" href="alphaberrystyle.css" type="text/css" />
Now it works perfectly in IE 6 when I remove what is bolded above ^, however, it doesn't work in Firefox when I remove that.
Does anyone know why this is happening? It's probably staring me right in the face, but I can't see it yet  Thank you!
|