Space between lines is too big

Hi,
How are you? When editing text I sometime have two paragraphs in a text element.
When I press enter the space between the two paragraphs is very big.
Please note that this isn’t for the general space between lines, only when I hit enter.
Could you help me adjust this to a normal distance? :slight_smile:
Here is an example of a page:

Thanks!

Hi @alonmg,

Is there a default bottom margin for paragraphs which you can override by adding this code in X > Theme Options > CSS:

p {
    margin-bottom: 10px;
}

Hope this helps.

Thanks. Is there a way to apply it for all the posts?

Hey @alonmg,

That code will apply site-wide that means it will apply for your posts too. Do you want to apply it to all blog posts only? If that is the case, please update it to this:

.single-post p {
    margin-bottom: 10px;
}

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.