css for special characters

Formidable Forms
25 September, 2023 23:15:47
Topics: 11
Messages: 30
Hi, I need clients to create lists so I'm using the rich text field in formidable. The problem is that they want the bullet points to be a different colour to the text. I tried using the "li:before{..." css in the html field in e2pdf, but this didnt do anything. I also tried using "li {..." which changed the colour to all the list including the text. is there a way to just get the bullet point to change colour?
26 September, 2023 00:47:30
E2Pdf
Support
Topics: 7
Messages: 3176
Hello,

Unfortunately, there is currently no way to change the "bullets" color. We will review this possibility. Meanwhile, as an alternative, you can try to use "images" instead:

ul {
list-style-type: image;
list-style-image: url("https://www.w3schools.com/cssref/sqpurple.gif");
list-style-image-size: 5;
}
We would really appreciate your feedback at WordPress.org!
27 September, 2023 17:06:34
Topics: 11
Messages: 30
Thank you, this alternative method is actually really helpful to know. Thanks!