Space between paragraphs in blog post articles

Hi,
The line spacing between paragraphs seems to be a little bit tight. In the past, I’d fix it with CSS Hero. How would I do this manually with CSS?

Hey Jim,

We’ve already included a line-height setting for general texts on the latest version of the theme, 1.5. It’s under Appearance > Customize > General > Text. Can you update to the latest version of the theme and give it a shot? :slight_smile:

Ben

Hi Ben,
Yes, I did that… I’m just looking to create a little more space between paragraphs or “chunks” of text.

Jim

Hi Jim,

Can you provide a link to the site in question, please? So we can take a closer look. Also, did you try the options Ben suggested above, did this resolve the issue?

Thanks,
Danny

Hi Danny,
I went ahead and fixed it with CSS Hero. I’m all set.

Thank you,
Jim

Ah! So you wanted to give a different line-height value for certain texts? That is certainly possible with custom CSS! You’ll need to place a custom class to the Text Editor module you want it to apply to, e.g., .fl-custom-class. You can then use the CSS snippet below.

.fl-custom-class p {
    line-height: 1.5;
}

Ben

Yes, that’s what I meant :slight_smile:

Awesome! Glad we could help. :slight_smile:

Enjoy BB!

Ben