Forums

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

Home Forums CSS Disappearing borders in ie8 or compatibility mode

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #147001
    sschlager
    Participant

    Does anyone know how to fix this? Still learning CSS. The site I am testing is at http://www.coppercreekphotography.com/testing Whenever someone on IE8 looks at it, it disappears, the same happens when someone is in compatibility mode.

    #147003
    gowda24
    Participant

    Internet Explorer 8 and earlier versions, do not support the tag.
    refer

    #147006
    sschlager
    Participant

    Thank You…it worked! I thought I tried a div tag in place of the section tag. You wouldn’t happen to know how to get rid of the border/shift when going into compatibility mode. Once again thank you.

    #147018
    sschlager
    Participant

    Now I have a problem with the logo and the menu in compatibility mode. The logo majorly shifts. So frustrating.

    #147034
    Paulie_D
    Member

    Possibly a box model issue?

    Your container is 980px wide but the .group4 element is 980px wide PLUS 30px (15 px left/right) padding and PLUS 4px (2px left/right) border = 1014px.

    * {
    box-sizing:border-box;
    }
    

    is IE8 supported…isn’t it?

    Not sure why you are floating the .group4 div either if it’s supposed to 100% wide.

    #147068
    Senff
    Participant

    You have some markup issues. Aside from the questionable conditional statements everywhere, double triple check that your nesting of ULs, LIs and As is proper and that every opening tag has its matching closing tag.

    Some browsers are forgiving when you the number of opening tags doesn’t match the number of closing tags, but IE8 is not so forgiving.

    #147087
    Paulie_D
    Member
Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘CSS’ is closed to new topics and replies.