Notifications
Clear all

[Solved] Add spacing between paragraphs in posts

4 Posts
3 Users
0 Reactions
117 Views
Posts: 7
Topic starter
(@am_wolfe)
Active Member
Joined: 2 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: 1301
(@tutrix)
Noble Member
Joined: 4 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: 7
Topic starter
(@am_wolfe)
Active Member
Joined: 2 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: 6 years ago

Support Team
Posts: 4416

@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.