Argeebee theme removes all the space between your paragraphs
There should be some mention of this since I'm sure a lot of people will want normal paragraph spacing.
The Argeebee theme removes all the space between your paragraphs. The offending code is in the layout.css file:
.node .links,
.node .content P {
margin:0;
}Here is how it makes your paragraphs look:
This is the 1st paragraph. This is the 1st paragraph. This is the 1st paragraph. This is the 1st paragraph. This is the 1st paragraph. This is the 1st paragraph. This is the 1st paragraph. This is the 1st paragraph.
This is the 2nd paragraph. This is the 2nd paragraph. This is the 2nd paragraph. This is the 2nd paragraph. This is the 2nd paragraph. This is the 2nd paragraph. This is the 2nd paragraph. This is the 2nd paragraph.
If you want normal paragraphs with space between them, you have to delete the "P" like this:
.node .links,
.node .content {
margin:0;
}