Forums

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

Home Forums CSS Internet Explorer 7 Issues

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #35934
    goalieman34
    Member

    My clients office has Internet Explorer 7 and when they view my website it has a few problems that I am looking to fix.
    – The footer sticks out past the page on the right hand side
    -There is a small gap under the header image that needs to be eliminated.

    Any help would be great!

    http://www.quigleycontracting.squarespace.com

    #93864
    TheDoc
    Member

    Well, for starters you have some pretty significant errors: Invalid Markup

    #93899

    The footer sticks out past the page on the right hand side
    -play around with the padding or margin ,….like the #pagefooter or the #pageFooterWrapper.

    There is a small gap under the header image that needs to be eliminated.
    -IE7 some hates using negative margins…

    why not apply this instead

    #pageBodyWrapper {
    overflow: hidden;
    position: relative;
    top: -30px;
    }

    and remove #bannerWrapper negative margin

    #93934
    goalieman34
    Member

    @aced thanks that worked perfect. But now I need to move up my footer as well. Can you help me with this.

    http://www.quigleycontracting.squarespace.com

    #93964

    at #pageFooterWrapper , remove the margin property
    and add this instead…

    bottom:30px
    position:relative;

    let me know if this works..

    remember to create backups of your work, just in case…:D

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