How to change colour of bullets in List?

Hello all.

How do I change the colour of the bullet points in a List? Is there a class I need to look for to edit?

My bullets seem to default to a mid-grey.

Many thanks.

Hi @douglasrthomson

You can add something like this in your page header

<style>
ul li::marker {color: red}
</style>
1 Like

Thank you.