Forums

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

Home Forums CSS s and spacing problems Reply To: s and spacing problems

#236530
Paulie_D
Member

On the “Editing” thing…more issues.

Please don’t use <br> tags or empty p tags for spacing…that’s not what they are for.

Spacing should be manged through margins and padding.

In this case, this is an h1 tag (although you should really be using an h2 or h3 here) and you’ve removed the top margin with:

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0 0 29px;
}