Tagged: paragraph spacing
Please see this page.
The first paragraph has the sort of spacing I’m looking for. The rest of the page is what is ‘default’ but far too close together. Making it doubtful most will bother to read it.
I have used the <br/> tag to create this. However, when I return to this page to edit anything, the <br/> tags dissapear. Sometimes they dissapear without me even going to that page to edit anything.
I have before come to this forum and got a code for the CSS under ‘styling’ to make this paragraph spacing permanent.
However, the code I used made EVERYTHING on the entire site more paced out. Which obviously made it look ridiculas.
I need a code or a method to create the sort of spacing seen on the above link with paragraphs, but not everything else. And then on all blog pages too…
Thanks for your help.
Hey jvines!
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.entry-content-wrapper p {
margin-top: 20px;
margin-bottom: 20px;
}
Then adjust the margins as needed.
Regards,
Devin
I added it to the Quick CSS but it made no difference to anything?
I don’t know how to add it to the custom.css….
It can be tweaked to have a wider effect like this:
.entry-content-wrapper p,
.entry-content p {
margin-top: 20px;
margin-bottom: 20px;
}