Changing color of bullets in unordered list

I seem unable to find a tool to change the color of bullets in a UL inside text elements. Is it because I’m editing from a template, or is there something I’m missing? Do I need to edit the CSS file?

Hi,

You can use CSS:

ul{
    li{
        &:before{
            color: *add your color here*;
        }
    }
}

You need to add the above to the preset CSS.

Good luck!

1 Like