Internet Explorer 6 doesn’t understand the CSS min-height property.
You can find many solutions for this problem.
One of the most easy and fastest solutions I could found is the CSS Min-Height Fast Hack.
selector {
min-height:500px;
height:auto !important;
height:500px;
}
More info on
http://www.dustindiaz.com/min-height-fast-hack/
