Is it a CSS problem, or are there empty paragraphs or breaks between those paragraphs in the html file?
If its in CSS, you can change it to this:
p {
margin: 0;
padding:0;
}
If it's in the html, you can use regex to remove those empty paragraphs or breaks. But I'm no good with regex :-)
|