askdesign
6/11/2015 - 2:35 PM

Bullet List Color

CSS

li {
list-style: none;
}
li:before {
/* For a round bullet */
content: '\2022';
/* For a square bullet */
/*content:'\25A0';*/
display: block;
position: relative;
max-width: 0;
max-height: 0;
left: -10px;
top: 0;
color: green; /*--- change bullet color here ---*/
font-size: 20px;
}