View Single Post
  #8 (permalink)  
Old Dec 17th, 2007, 17:25
Aso's Avatar
Aso Aso is offline
Chief Moderator

SuperMember
Join Date: Oct 2007
Location: UK
Posts: 1,119
Blog Entries: 2
Thanks: 5
Thanked 35 Times in 32 Posts
Re: Floating over text

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
Reply With Quote