Archived topic
Bullets customization
3 replies · Started by Manuela on February 16, 2021
Viewing posts 1–4 of 4
Hello,
Could you help me change the color of the bullets from black to #dab152?
Thank you,
Hi there,
you will need to add this CSS:
.entry-content ul li {
list-style: none;
position: relative;
}
.entry-content ul li:before {
content: "\2022";
color: #dab152;
font-size: 1.5em;
line-height: 1.7em;
font-weight: bold;
position: absolute;
left: -0.75em;
}
Great, thank you!
You're welcome
This archived topic is closed to new replies.