Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Solved] Add spacing between paragraphs in posts

4 Posts
3 Users
0 Reactions
417 Views
Posts: 17
Topic starter
(@am_wolfe)
Eminent Member
Joined: 1 year 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: 1522
(@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: 17
Topic starter
(@am_wolfe)
Eminent Member
Joined: 1 year 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: 8 years ago

Support Team
Posts: 5483

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