Squarespace’s ul elements doesn’t use usual list-style for list item decoration , but rather :before to create more custom dots in lists.
So we need to remove the dots first and also adjust the spacing on list itself. Add this to Pages › Website Tools › Custom CSS:
ul[data-rte-list] li>*:first-child::before {
display: none;
}
On this page