Viewing Flexbox / Styled Text: Extra space between list numbers

Flexbox / Styled Text: Extra space between list numbers



User: Horst H. 2 years ago
How do I add vertical space between list items? I have tried inserting <br> tags but these are, once I click on a different flexbox simply re-interpreted as standard linebreaks and the numbering becomes messed up (see screenshots below).

screenshot_list_space_1.png
<br> tags get converted to linebreaks
screenshot_list_space_2.png
User: EverWeb Support 2 years ago
Hi Horst,

Yes, you can do it.

Try clicking on Full Screen which is under the Helvetica font and then numbering the list however you want.

Also, you can create several Styled Texts in Embedded Objects, which also works as a workaround.

Last edit 2 years ago

-------------------------------
EverWeb Customer Support
Submit Tickets or Learn More
User: Horst H. 2 years ago
I figured it out after some of my own digging. Using CSS in the head code field,

<style>
li:not(:last-child) {
margin-bottom: 20px;
}
</style>

does the trick.


Post Reply
You must login or signup to post.