Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Some help please Re: Some help please

#69650
dcp3450
Participant

Try giving your whole site a container with a common background and 100% width. example:

#container
{
background-color: #E7E8E7;
width: 100%;
}

<body>
<div id="container">
header
main_content
subcontent
footer
ect
</div>
</body>

The only issue I saw was the background of all your divs kept being cut off. Those divs were showing their backgrounds based off the window size. However, if contained within a containing div they will fill out the container instead.

also, I played with your code. you need to give elements like your header and main_content a width. I got better results that way.

do both of those and you should see an improvement. Let me know how it goes.