I customized my bullets to be orange, using this global css:
ul {
list-style: none; /* Remove default bullets */
}
.content li::before {
content: “•”;
color: #f49300;
font-weight: bold; /* If you want it to be bold */
display: inline-block;
width: 1em;
margin-left: -1em
}
But my breadcrumbs are now showing up with bullets on them.
And the same with some onpage (inline) navigation that I setup for a complex page.
Help, please!!! Thank you in advance!