Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
If I understand you right, you want there to be some padding on the bottom of the div with an id="contentWide", so that there is a gap between the bottom of the box, and the edge of its container.
One way to do this, for example, is to simply add padding to #contentWide, like this:
Code:
#contentWide {
padding-bottom: 20px;
}
Or however many pixels you think is needed.
The <br class="clear" /> is not needed, and may be removed. This is a device that used to clear floats, nothing else.
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
|