Add Extra Space Between List Items
By default, the Total theme does not add extra spacing between list items (this may change in future updates). This approach helps avoid conflicts with third-party plugins that also use lists.
If you’d like to create additional spacing between your list items, we recommend using custom CSS. The snippet below targets list items without a custom class and adds extra margin to the top of each one.
li:where(:not([class])) {
margin-block-start: 1em;
}Learn how to add custom CSS to your site.
Related Snippets