How to style unordered list item in CMS Rich text

Hi @parker
Thanks for your quick reply! As mentioned, the usual “replace list bullets to custom icons” as shown in the forum post you shared is not working for lists integrated in rich text fields connected to a CMS rich text field.

But I found a simple solution in the meantime. In the elements panel of my browser I searched for the list class Webflow assigned to this list and did some basic CSS:

.list.kl.w-richtext {
list-style-image: url(‘https://uploads-ssl.webflow.com/5de9f6064b9e5a0f0ea33ece/5e5fba73b41ccd70f7827f97_check_list.png’);
}

That was it! :slight_smile: Thanks anyway for the input!