Is there a way to change the color of bullets to match the text color using the Rich Text Editor?
I'd prefer not to have to code through HTML to make that happen but so far haven't discovered a way to make it happen in the editor.
Hi Greg,
This is normally set through your email or landing page template CSS.
-Greg
That makes sense, thanks!
Usually, you will have to use a CSS code like this :
ul {
list-style: none; /* removing the std list in order to use before */
padding:0;
margin:0;
}
li {
padding-left: 1em;
text-indent: -.7em;
}
li:before {
content: "• ";
color: red; /* or whatever color you prefer */
}
You could add these styles inline in the rich text editor
-Greg