Site logo

Archived topic

Distance between paragraphs in enumerations

1 reply · Started by Bernhard on May 3, 2019

Viewing posts 1–2 of 2

Hi,
I want to have the same distance between paragraphs in enumerations as defined for all paragraphs in the customizer.

Hi there,

you can try some CSS like this:

.entry-content li {
    margin-bottom: 1.5em;
}

It however may effect any plugin content that uses the li element.
If thats the case then when creating your list you would add a class to the parent element in the post Text editor eg.

<ol class="enumerations">
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
    <li>List item</li>
</ol>

And this CSS:

.enumerations li {
    margin-bottom: 1.5em;
}
This archived topic is closed to new replies.