SitePoint Sponsor

User Tag List

Results 1 to 7 of 7

Thread: My Right Div Appears Out of Place in IE8 Browser

  1. #1
    SitePoint Addict
    Join Date
    Nov 2008
    Posts
    201
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    My Right Div Appears Out of Place in IE8 Browser

    In my IE8 browser, the "content" div is out of place and appears near the bottom. Why?

    page

  2. #2
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    19,959
    Mentioned
    216 Post(s)
    Tagged
    2 Thread(s)
    I think it might be the overflow: auto on #contentwrapper causing it.

    Try changing it to overflow: hidden;

    Code:
    #contentwrapper {
      overflow: hidden;
      width: 775px;
      padding: 0 20px 0 30px;
    }

  3. #3
    SitePoint Addict
    Join Date
    Nov 2008
    Posts
    201
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for your reply! But unfortunately, that didn't work.

  4. #4
    SitePoint Addict
    Join Date
    Nov 2008
    Posts
    201
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see what the problem is - the scroll bar keeps appearing in annoying IE8 (and was taking up extra space). I put overflow: auto; into the #content div. Fixed.

  5. #5
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    19,959
    Mentioned
    216 Post(s)
    Tagged
    2 Thread(s)
    Seems to be fine now. What made the difference?

  6. #6
    SitePoint Addict
    Join Date
    Nov 2008
    Posts
    201
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by jihanemo View Post
    I see what the problem is - the scroll bar keeps appearing in annoying IE8 (and was taking up extra space). I put overflow: auto; into the #content div. Fixed.

  7. #7
    billycundiff{float:left;} silver trophybronze trophy RyanReese's Avatar
    Join Date
    Oct 2008
    Location
    Whiteford, Maryland, United States
    Posts
    13,564
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Hi, I'm sorry, IE8 isn't showing that for me?
    Edit:

    Oh wow, missed like 4 posts..shoulda refreshed
    Twitter-@Ryan_Reese09
    http://www.ryanreese.us -Always looking for web design/development work

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •