Comments jfung started the conversationAugust 10, 2020 at 5:15pmHi, I am trying to change the color of the bullets in the unordered list. When I used the inspect tool, I can't find the ::before, so using the following code didn't seem to work:ul li::before { background: #006b77; color: #006b77;}Where can I change the color of the bullets? or what css codes will I need to put in?Thanks! 895TheFox repliedAugust 11, 2020 at 9:04amHello, try to add this custom css :.wpb_text_column ul li:before { content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */ color: red; /* Change the color */}and change the color to what you want.Try to use !important if it doesn't work.Do not hesitate to contact us if you have more questions. Have a nice day! Best Regards.--------------------- Hosting we recommend ( Free SSL and CDN included in all plan ). Speed up your site with Autoptimize Test your site with GTmetrix and fix the issue to make it faster How to Update your Theme Sign in to reply ...
Hi, I am trying to change the color of the bullets in the unordered list.
When I used the inspect tool, I can't find the ::before, so using the following code didn't seem to work:
ul li::before {
background: #006b77;
color: #006b77;
}
Where can I change the color of the bullets? or what css codes will I need to put in?
Thanks!
Hello, try to add this custom css :
.wpb_text_column ul li:before {
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
color: red; /* Change the color */
}
and change the color to what you want.
Try to use !important if it doesn't work.
Do not hesitate to contact us if you have more questions.
Have a nice day!
Best Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme