SitePoint Sponsor

User Tag List

Results 1 to 3 of 3

Thread: Layout issues

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

    Layout issues

    On this page the content is going beneath the red bar, how can I fix it? http://bit.ly/wcrW0B

  2. #2
    The CSS Clinic is open silver trophybronze trophy
    SitePoint Award Recipient Paul O'B's Avatar
    Join Date
    Jan 2003
    Location
    Hampshire UK
    Posts
    37,742
    Mentioned
    99 Post(s)
    Tagged
    3 Thread(s)
    Your footer is absolutely positioned so does not take part in the flow and will overlap the content. Remove the absolute positioning and clear your floats to make the background extend.

    e.g.
    Code:
    #content_i{
    position:static;
    }
    #content-box-1col{overflow:hidden}

  3. #3
    SitePoint Guru
    Join Date
    Nov 2008
    Posts
    841
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cheers fixed.

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
  •