Ok, I know what everyone's going to scream, so I'll do it this time
Validate your markup! (
25 Errors)
And why have you got table elements in there? I can't see any need for them.
Ok, for your container you've got
- Code: Select all
.container {
width: 940px;
min-height:600px;
height:auto;
height:600px;
...}
Height: auto and
min-height: 600px are doing nothing, because your final declaration
height: 600px is overriding them.
Get rid of height: auto and min-height: 600px, then add this somewhere else
- Code: Select all
* html .container {
height: 600px;
}
This is an IE6 specific declaration, as mentioned earlier