Site logo

[Resolved] Vertical space between list items

Home Forums Support [Resolved] Vertical space between list items

Home Forums Support Vertical space between list items

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #192442
    Enrico

    Good morning,

    This code should insert a space between lines in the list but there is not space. How I could have space between lines in the list?

    <ol>
     	<li>È meglio</li>
     	<li>Consiglio/li>
     	<li>Non dimenticarti</li>
    </ol>

    I have tried this but no space added.

    <ol>
     	<li style="margin-bottom:20;">È meglio</li>
     	<li style="margin-bottom:20;">Consiglio/li>
     	<li style="margin-bottom:20;">Non dimenticarti</li>
    </ol>
    #192512
    Tom
    Lead Developer
    Lead Developer

    Try this CSS:

    ol li {
        margin-bottom: 20px;
    }
    #192651
    Enrico

    Thanks a lot Tom!
    I discovered your new plugin Simple CSS too and is exactly what I needed, a Css customizer in each page!

    Enrico

    #192704
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

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