Quote:
*{
margin:0;
padding:0;
}
|
As 'neat' as that seems, it's not advisable to do that, it does cause problems with other things. It's a good practice to zero out margins and padding on all of your major elements. You might want to try this instead: http://meyerweb.com/eric/tools/css/reset/
Something else you need to do. I see you have a lot of floats with no widths defined. When you float an element (other than an image), you MUST define a width, otherwise you're leaving it up to the browser to GUESS, and you don't want that!
Your #container isn't 'containing' anything because you have not properly CLEARED your floats.
SolidEagle is right, you've got way too many divs for that, and it appears you're still thinking in tables and not a css-based layout.
You might want to read thru this: www.cssslicingguide.com
__________________
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
Last edited by LadynRed; 02-11-2009 at 10:06 AM..
|