Changing Bullet Colors Using the Rich Text Editor

Anonymous
Not applicable

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.

3 REPLIES 3
Grégoire_Miche2
Level 10

Hi Greg,

This is normally set through your email or landing page template CSS.

-Greg

Anonymous
Not applicable

That makes sense, thanks!

Grégoire_Miche2
Level 10

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