On Jan 29, 2007, at 3:09 PM, Stephane Bortzmeyer wrote:

> <!--[if IE]>
>         <link rel="stylesheet" type="text/css" media="screen"  
> href="fixed_ie.css" />
> <![endif]-->


That's a conditional statement. That's sending this SS to ANY version  
of IE. The original creator of this site has a special style sheet  
that is given to only IE and it's likely they meant to only target  
the older IEs.

Try changing the conditional to
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="screen"  
href="fixed_ie.css" />
<![endif]-->

Adding the "lt" will target the older browsers (IE 6 and below)


chris.pallé, interactive media designer
--------------------------------------------------------
[EMAIL PROTECTED]


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to