|
The first thing you need to do is get rid of that position:absolute, it's not necessary.
Set position:relative on #wrapper2.
Your #header is set to a zero height - how do you expect anything to fit inside of zero ? It's also not necessary to float #header since it fills the entire width of #wrapper2.
You have no dimension on #kings. If you float an element, it MUST have a defined width. I would just float #kings left and give it a left margin to push it over where you want it.
In addition, #wrapper is not containing anything and neither is #header because your floats are not properly cleared.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|