How can we change the space between paragraphs in an easy way?

Posted in: Newspaper
Post count: 62

I just did a wordpress course and they have shown us other templates and I have asked how the space between paragraphs can be changed and I have seen that it is very easy.
How do you do it in newspaper without resorting to CSS?
Thank you

Post count: 1341

Each paragraph (p tag) will have a margin bottom set by the theme. The theme uses a value of 26px
https://www.screencast.com/t/NYhsRZKH8N
A default WordPress theme adds a 4.5em margin between paragraphs
https://www.screencast.com/t/pNga3A77jVWm

To modify this default margin there is no setting at the moment. If a setting specifically for this is requested more by theme users it will be added.

However it could be done with a simple code in the Theme panel -> Custom CSS section, with the value you want in it. For example this code will set a margin bottom of 15px to all the paragraphs in the post content

.td-post-content p {
margin-bottom: 15px;
}

https://forum.tagdiv.com/topic/switching-from-divi-issue/#post-275498

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.