CSS issues with Footer and Side panel

Discussion in 'CSS' started by swapshop, Aug 28, 2007.

Thread Status:
Not open for further replies.
  1. #1
    Trying to realign our footer on Linksprocket

    The footer should be wider that it is but I have cut it down to 4 columns rather than five.

    Footer is controller via CSS and Div's

    Issue is under some pages the footer and side panel to the left clash and the footer appears under the side panel

    I need to have the footer 5 columns wide and always be below the side panel??

    Any one point me in the right direction?
     
    swapshop, Aug 28, 2007 IP
  2. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #2
    try

    <div class="footerbottom" style="clear:both">
    Copyright 2007 Linksprocket.com | <a href="http://www.linksprocket.com">Sports 
    Entertainment Technology Region Travel Social News Portal </a>
    
    </div>
    HTML:
     
    just-4-teens, Aug 29, 2007 IP
  3. swapshop

    swapshop Peon

    Messages:
    656
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    0
    #3
    just-4-teens thanks but no didnt work still riding up the page

    also tried

    .footer {
    position: absolute;
    top: auto;
    bottom: 0;
    }
     
    swapshop, Aug 29, 2007 IP
  4. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #4
    i used to get this problem when designing wordpress themes,

    did u try

    .footer {
    clear:both;
    position: absolute;
    top: auto;
    bottom: 0;
    }

    also try clear:both; & add a margin
     
    just-4-teens, Aug 29, 2007 IP
  5. swapshop

    swapshop Peon

    Messages:
    656
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Tried this as well

    .footer {position: float; top: auto; bottom: 0; border-top:1px solid #000000;padding:12px 0 10px 15px;font-size:86%;font-size:86%;color:#999; margin-top:15px;}
     
    swapshop, Aug 29, 2007 IP
  6. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
    #6
    have u tried setting a min-height on the page content section?
     
    just-4-teens, Aug 29, 2007 IP
  7. swapshop

    swapshop Peon

    Messages:
    656
    Likes Received:
    34
    Best Answers:
    0
    Trophy Points:
    0
    #7
    just-4-teens thanks for your help but again min-height can you give me a example?
     
    swapshop, Aug 30, 2007 IP
  8. just-4-teens

    just-4-teens Peon

    Messages:
    3,967
    Likes Received:
    168
    Best Answers:
    0
    Trophy Points:
    0
  9. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,999
    Best Answers:
    253
    Trophy Points:
    515
    #9
    Good lord - that greywyyvern link is the biggist pile of crap I've ever seen for implementing min-height... and that Diaz one linked to on that page is the 'classic' IE6 only - when thier's a piss simple way to implement it that works on IE5 and 6, and on all modern browsers... it works on the simple fact that IE 6 and earlier treats height as min-height - hence the lack of a separate min-height declaration. Solution, simple * html hack.

    div {
    min-height:50px;
    }

    * html div {
    height:50px;
    }

    if you need an overflow property on the div to make it contain floats, remember that IE always contains floats, so set DIV to overflow:auto or overflow:hidden, then set * HTML DIV to overflow:visible;

    and throw those other techniques in the trash.

    -- edit -- looks like in the comments on that Diaz page the above method is mentioned too. ;)
     
    deathshadow, Aug 30, 2007 IP
Thread Status:
Not open for further replies.