• That last post about the margin is not mine

    just want to make the sidebar go all the way down – it looks kind of barren once you scroll past it

    the site

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter etype76

    (@etype76)

    Ok I have made each parent element height:100% but still nothing:

    html, body {
    height: 100%;
    }
    #wrapper {width:950px; margin:0px auto; height:100%;}
    #main {
    background-color:#FCF9C2;
    padding:5px;
    width:940px;
    heght:100%;
    padding-bottom:20px;
    }
    #sidebar2{
    width:200px;
    height:100%;
    background-color:#993300;
    float:right;
    }

    Thread Starter etype76

    (@etype76)

    I just tried min-height with ie hack and zilcho

    #sidebar2{
    width:200px;
    min-height: 100%;
    height: auto;
    background-color:#993300;
    float:right;
    }

    /* Hack for IE */
    * html #Sidebar2 {
    height: 100%;
    }
    /* End IE Hack */

    you’re currently in maintenance mode… (I really like that plugin!) no one will be able to examine your theme for you at the moment…

    ??

    Thread Starter etype76

    (@etype76)

    Ok I left out an i in height in the #main css – fixed that and all of my #main content spilled over the background SO – i used the min-height in the #main tag and that fixed the body and then went to use the same trick in sidebar as it is the next child element but nuthin! my sidebar still wont fill the void!

    html, body {
    height: 100%;
    }
    *{margin:0;padding:0;}
    body {background-color:#000000; font:13px Trebuchet MS;}
    #wrapper {width:950px; margin:0px auto; height:100%;}
    #main {
    background-color:#FCF9C2;
    padding:5px;
    width:940px;
    min-height:100%;
    height:auto;
    padding-bottom:20px;

    }
    /* Hack for IE */
    * html #main {
    height: 100%;
    }
    /* End IE Hack */
    #sidebar2{
    width:200px;
    min-height: 100%;
    height:auto;
    background-color:#993300;
    float:right;
    }
    /* Hack for IE */
    * html #sidebar2 {
    height: 100%;
    }
    /* End IE Hack */

    Thread Starter etype76

    (@etype76)

    Doh! Thanks Clayton! Sorry about that ya’ll – I keep turning it on and off to show WWS. Well if anyone can see it now i just turned it off. Thanks!! Hope everyone’s weekend was great!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How can I make the sidebar go all the way down?’ is closed to new replies.