Hello,
We would like to change the color of the bullet points on some elements. We tried adding some custom css, like this one for example:
li::before {content: “•”; color: red;
display: inline-block; width: 1em;
margin-left: -1em}
That does change the color of the bullets but it also adds bullet points to menu items. We then tried applying css to only specific elements but it still changes menu items. This is how that looks:
Is there a way to change bullet point colors but not have them added to menus?