On Mon, 23 Apr 2012 16:11:58 +0100, Ellen Herzfeld <[email protected]> wrote:

My previous message points to the wrong file without the media queries : it should be

http://qd.xlii.org/2012/content_modules-ie8.html

By the way, I checked without selectivizr and it doesn't change the problem.

Ellen

Both this page and the one you posted previously are having problems, I suspect it is your conditional comments that are preventing load.
Check the syntax, and maybe the logic of how the IE versions are targeted.

<!--[if ! lt IE 6]><!-->
        <link rel="stylesheet" href="/styles/fonts.css" media="all" />
        <link rel="stylesheet" media="all" href="/2012/reset.css" />
        <link rel="stylesheet" media="all" href="/2012/base.css" />
        <link rel="stylesheet" media="all" href="/2012/banner.css" />
<!--<![endif]-->

if I read this one correctly, the 'not' operator ! should be directly in front of the lt, '!lt', however there is a closing of that conditional which feeds the linked sheets to everything (correctly I guess), then it is followed by the real closing statement for the conditional. Perhaps the slight mish-mash is upsetting IE, and isn't [if !lt IE 6] the equivalent of [if gte IE 6], but in a slightly more convoluted way. Similar coding applies for your language declaration, maybe those classes appear at some stage (class="lt-ie9 lt-ie8 lt-ie7" etc.) but the section:
<!--[if gt IE 8]><!-->
        <html lang="fr-FR">
<!--<![endif]-->
surely just ends up serving <html lang="fr-FR"> to everything.

on XP
IE8 'sometimes' shows the page, but with little styling, into IE7 mode and no content is visible. FF 11.0 will not let me switch away from a 'Handheld' media type for the CSS and is not showing anything like the styling that appeared on your first posted link.

on Win7
IE9 shows as FF, IE8 and IE7 modes show content but move your image from the right to the left of the page.

Best wishes

Duncan
______________________________________________________________________
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