Step2 - Set background image
Use SVG (Better than png) - without any extra space around. Left: 0; top => “tricky” you should manually add Xpx (Depend on font type, font size and so on).
I used custom CSS to remove the icon on all ordered lists.
You will need to have a “Global Styles” component that is just a Custom Embed with all the styling you need for each page in order to apply it globally. Then you add the below code:
<style>
ol[role="list"] li {
background-image: none;
padding-left: 0;
}
</style>
Basically we’re selecting all the List Items within Ordered Lists to have specific styling of
no background image
no padding
This will apply to all ordered lists, including the ones inside Rich Texts