Changing Bullet Colors Using the Rich Text Editor | Community
Skip to main content
October 22, 2015
Question

Changing Bullet Colors Using the Rich Text Editor

  • October 22, 2015
  • 1 reply
  • 3073 views

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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

Grégoire_Miche2
Level 10
October 22, 2015

Hi Greg,

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

-Greg

October 24, 2015

That makes sense, thanks!

Grégoire_Miche2
Level 10
October 25, 2015

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