I seem to suffer from this all the time, too much space between headers and the things underneath them.
... and I've simplified it down to the following:-
I have the following HTML:-
<p> Paragraph1 </p>
<p> Paragraph2 </p>
In the CSS I have:-
p { background: blue; padding-bottom: 0; margin-bottom: 0px; margin-top: 0; padding-top: 0; }
(The background: blue; is just to prove it's being acted on)
... and there's still a great wide white space between the two paragraphs. How can I get rid of it?