How Do I Change the Color of Bullets in WordPress?

Changing the color of bullets in WordPress can be done by editing the wp-content/themes/yourtheme/style.css file. In that file, you’ll want to locate the following line:

post-content .post-image .

post-video {.

color: #000;

}

You can change the color of bullets to whatever you’d like by adding a new color value after the “#000″ string. For example, if you wanted to change the color of bullets to green, you would add the following line to that file:

color: #006400;.