I have made my front page for my website but the white background disappears and I would like to know why and how it can be fixed. its at seoservices360.com/test you can look at the css file and source code if you like. Cheers Web-Master
1) You have "background-color: white;" declared twice, which may be canceling out each other. 2) Use "background: #fff;" instead of "background-color: white;" and only once.
I assume that you are talking about the background of the two content DIVs If so then just add this background-color: #FFFFFF Code (markup): after here: #content .left { width: 470px; float: left; Code (markup): and also after here #content .right { width: 240px; float: right; Code (markup): in your css file. That should solve it.