Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Only modern browsers display correctly (IE troubles)

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #28812
    pelinor
    Member

    Hi,

    I have been working on this message board Runboard Design and have gotten it to display correctly in all of the modern browsers but IE is giving me fits. I can handle the IE not supporting the CSS2 pseudo-class format which I used for the variable width separators and deco-elements but the calendar doesn’t display correctly in any of the IE family except IE7 and for the life of me I cannot figure out why. The calendar is a unordered list that allows links in the li and ul. Can anything be done to get the thing to show properly in the other IE browsers?

    Thanks in advance for any and all help on this…

    Pelinor

    #74591
    Rob MacKay
    Participant

    The funny thing about IE is that if something isn’t valid is throws a wobbler sometimes. These problems can cascade. IE isn’t as forgiving as the other browsers, that’s why sometimes it seems like IE is rubbish (which it is) although a lot of the time is bad practice.

    Anyway my point is I ran that site through the validator and it came back with 364 Errors and 5 warnings.

    So I would look into that first – you don’t have to get every error ironed out but that many is a little excessive…

    http://validator.w3.org

    **Edit – I had a quick look down the code – you have a few ID’s that are the same. An ID needs to be unique to the page, and I know that IE hates this from my own experience (it completely stopped a script from running…)

    #74585
    pelinor
    Member

    I know if you run the code through W3C as a page then you get a huge number of errors. I do not have access to anything but the CSS and HTML and only the HTML inside the area between the <head></head> tags. I am also stuck with the ID’s and classes inside the content (middle panel) so the code that is mine is really just what is found in the left and right sidebar the "header" where I placed the banner and the "footer" which is just a "back-2-top" link area. When I run what I have control over through W3C I get zero errors but several warnings…

    #74597
    Rob MacKay
    Participant

    Ok what I would try then – as a quick fix and because you have access to the <head> – try copying this into it:

    <!–[if lt IE 9]>
    <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta3)/IE9.js"></script&gt;
    <![endif]–>

    and reload in IE – that fixes pseudo-class issues along with others :) *crosses fingers*

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.