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
2010-09-13 20:10:44
+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.
2010-09-13 20:11:38
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.
2010-09-13 20:19:43
+1, perfect solution
Ryan Kinal
2010-09-13 20:21:35
this worked perfectly. thanks for explaining it!
Pete
2010-09-13 20:54:53