Notifications
Clear all

[Solved] Add spacing between paragraphs in posts

4 Posts
3 Users
0 Reactions
286 Views
Posts: 9
Topic starter
(@am_wolfe)
Eminent Member
Joined: 8 months ago

Hi all,

How do I increase the space between paragraphs in posts? I think it would feel more readable if there was more space between each paragraph, it feels a bit tight for me as it is now. Posting example of what it looks like.

3 Replies
Tutrix
Posts: 1453
(@tutrix)
Noble Member
Joined: 5 years ago

Hi @am_wolfe 

add this to custom css
Dashboard > wpForo > Settings > Colors & Styles > Custom CSS

#wpforo #wpforo-wrap .wpforo-post-content {
 letter-spacing: 2px;
}

replace the 2px with the value you want

Posts: 9
Topic starter
(@am_wolfe)
Eminent Member
Joined: 8 months ago

Thank you,

I tried this and it did not change the spacing between paragraphs, it just changed the spacing between the letters it seems. Is there a way to simply make the space between the paragraphs bigger?

1 Reply
Sofy
 Sofy
Admin
(@sofy)
Joined: 7 years ago

Support Team
Posts: 4772

@am_wolfe

Use this CSS code: 

#wpforo #wpforo-wrap .wpforo-post .wpforo-post-content p {
    margin-bottom:  20px;
}

The red-marked value can be changed as you like.