The #allcontent background-color is always shown as the body-color when I open this in FF. body { background-color: #ffe4e1; font-family: Verdana, Geneva, Arial, sans-serif; font-size: small; margin: 0px; } #allcontent { width: 800px; background-color: #ffffff; margin-right: auto; margin-left: auto; } Any ideas what I am doing wrong Thanks Suze
I have had this happen when I add other "divs" that float within the "allcontent div'. The way I fixed it was to add a 'footer div' that spanned the width of the "allcontent div". #footer { width: 800px; background-color: #ffffff; margin:0; } and then just include the footer div within your allcontent div tags. Try this and let me know if it worked.