I have created a responsive layout which you can find here: http://pixelcakecreative.com/cimlife/responsive/

The left and right columns are simply placeholders for a site skin (left and right full page advertisement). I need both of these columns to extend to the very bottom of the page. Both html and body have a height of 100%, but for some reason I cannot get these columns to extend to the bottom with min-height:100%

Any ideas? I am looking for a pure css solution, but jquery is an option.

link|improve this question

1  
They only show up with browser width 1206 px+, FYI – JCHASE11 Nov 18 '11 at 21:43
feedback

4 Answers

up vote 1 down vote accepted

The jQuery solution would be:

// Set Left Column ONLY if Shorter than Document Height //
if ($('#toLeft').height() < $(document).height()){
    $('#toLeft').css('height', $(document).height()+'px');
}

// Set Right Column ONLY if Shorter than Document Height //
if ($('#toRight').height() < $(document).height()){
    $('#toRight').css('height', $(document).height()+'px');
}

I hope this helps!

link|improve this answer
this is a great solution. Will most likely end up using this unless I can dig up a css solution! – JCHASE11 Nov 18 '11 at 21:50
I tried this (currently live) and it does not seem to be working correctly. It modifies the height, but not to 100%. Take a look, any ideas? – JCHASE11 Nov 18 '11 at 21:55
I see its working on the right column but not the left; give me a sec to take a closer look. – dSquared Nov 18 '11 at 21:57
nevermind above comment. The reason why it wasn't working because the selectors were incorrect. They should be #toLeft and #toRight – JCHASE11 Nov 18 '11 at 21:58
Great; glad I could help! – dSquared Nov 18 '11 at 22:01
feedback

ugg.. yes quirk. i usualy use the $(document).height() for that stuf. the body height is usualy only as hi as the content needs it to be so the 100% does not work.

link|improve this answer
feedback

You've got to use clearfix: http://www.webtoolkit.info/css-clearfix.html It's pure CSS

link|improve this answer
there is a clearfix already in my css using a class of .group. I tried adding that to both columns and they disappear – JCHASE11 Nov 18 '11 at 21:49
Then just go with jquery -> @dSquared – bobek Nov 18 '11 at 21:49
feedback

You also need to add height: 100% to all parent divs, not only html or body.

This should fix your website:

#toLeft, #colA, body {
    height: 100%
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.