tags:

views:

79

answers:

3

The page isn't long enough (I'm on a 24" screen), so there is a white space at the bottom. Is there anyway to set some sort of min-height on the page? Or any solution? Never had to deal with this before.

+3  A: 

You can set the body to a background color. What did you want to have at the bottom?

curt
+4  A: 

Your problem is actually your background-image (200px x 200px white image) over-riding your background-color (#000000) choice.

Try moving your background-image into a different part of the page, like putting wrapping div around your .container_12 with a 100% width.

Jack M.
You might also want to watch your `float` settings. `#container` is not floated, but is inside of a `.container_12` which is floated. 960.gs has plenty of options for getting around this (like the `alpha` and `omega` classes).
Jack M.
+1, perfect solution
Ryan Kinal
this worked perfectly. thanks for explaining it!
Pete
A: 

Looks like you need a Sticky Footer.

Brian Ray