Forums

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

Home Forums CSS [Solved] How can I get rid of space on right/left of footer? Re: [Solved] How can I get rid of space on right/left of footer?

#77551
noahgelman
Participant

When you build a site, should always start your css with:

Code:
* { margin:0; padding:0;}

It is an automatic reset that zeros out all the default padding and margin for all elements. Your body gives an automatic margin of 10 pixels around the sides and bottom, it’s pushing your footer in. This will fix it for ya.