Forums

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

Home Forums CSS At my wit’s end with IE 8!!!

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #33718
    whitness
    Member

    Alright, any IE8 testers out there…maybe could you provide some enlightenment? I have a navigation menu that is not rendering correctly. Some overflow is going on, and I just can’t get my hands around it…

    The address is q2insights.com/people.html

    Let me know if you want me to post code snippets…

    #84271
    Mottie
    Member

    Hi Whitness!

    I think part of the problem might be the “>” in the page title, try switching it to “>”… IE likes to choke on that sort of stuff. My IE kept crashing for some odd reason.

    Another problem I found is on the services page, the right image isn’t where it is supposed to be. I’ve run into a problem in IE8 when using negative margins.

    #photoreel img:nth-child(2) {
    margin: 0 0 0 -2px;
    }

    So maybe switch this to something like this:

    #photoreel img:nth-child(2) {
    position: relative;
    top: 0;
    left: -2px;
    margin: 0;
    }

    The mega menu problem might just be the background color. I see this in the “normal” css (the rgba), but no corresponding definition, not using rgba, in the “ieservices.css” file, or maybe I missed it.

    #nav li.mega div {
    background-color: rgba(255, 255, 255, 0.87);
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.