Stan McCoy wrote:
> <!--[if IE 6]>
> <link href="css/avalon_ie6.css" rel="stylesheet" type="text/css"
> media="screen" />
> <![endif]-->
> <!--[if IE 7]>
> <link href="css/avalon_ie7.css" rel="stylesheet" type="text/css"
> media="screen" />
> <![endif]-->
> <link href="css/avalon.css" rel="stylesheet" type="text/css" media="screen"
> />

Hi Stan,

The order of the style sheets is probably causing you the problem here.
Present your default first, then override for IE6/7 like this:
<link href="css/avalon.css"
      rel="stylesheet"
      type="text/css"
      media="screen" />
<!--[if IE 6]><link href="css/avalon_ie6.css"
                    rel="stylesheet"
                    type="text/css"
                    media="screen" /><![endif]-->
<!--[if IE 7]><link href="css/avalon_ie7.css"
                    rel="stylesheet"
                    type="text/css"
                    media="screen" /><![endif]-->

That should do the trick.
Hope it helps.
--Bill

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TheHolierGrail.com | MacNimble.com | Cyber-Sandbox.com | Anytowne.com
Bill Brown, Web Developer - "From dot concept to dot com since 1999"
"The intuitive mind is a sacred gift and the rational mind is a
faithful servant. We have created a society that honors the servant and
has forgotten the gift. -- Albert Einstein
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to