you can change the icon with CSS. Just add the following CSS code:
.ed-text ul li:before {
content: “\f14a”;
}
You have to add the Icon Unicode to the icon at “content”, which you can find at Font Awesome. For the CSS the Font Awesome version 4.7 is used: Font Awesome Icons
I realised that this affects all UL on the page. How do I apply different icons to different UL on the same page? Tried creating a different class and apply to it, but couldn’t work.
you could add the font-size property to change the size of the icon and maybe you also have to adjust the width of the element (just if the icon is overlapping with the text)