If you fill in your text with an WYSiWYG-Editor you'll have noticed, that (if you have more than 1 paragraph) <P>-Tags get inserted. This will screw up (get bigger) the space between ContentHead/ContentSubhead and your article-text.
To avoid this simple put in this additional CSS-definition into your stylesheet:
Code: Select all
.articleText p
{
margin: 0px 0px 10px;
}
This will set the margin to 0px
before each paragraph and will produce a little space
after each in the article-text. Because it's defined as margin this space won't add to other defined margins preventing from getting big white space all over your page.
I think it's the quicker an better and semantically correct implementation instead of telling the WYSiWYG-editor to use <br><br>