Page 1 of 1

Different colored bullets in email

Posted: Tue Jun 21, 2016 5:31 pm
by Gchild1730
Hello! Is it possible, when writing an email and using bullets to make the bullets a different color other than black?

Re: Different colored bullets in email

Posted: Wed Jun 22, 2016 10:23 am
by JohnB
This is possible, but only by using inline styling. For example we can add color to the bullets here:
  • one
  • two
  • three
While editing the email, click on the <> button to view the source code. Now look for something like:

Code: Select all

<ul>
	<li>one</li>
	<li>two</li>
	<li>three</li>
</ul>
and change the opening "<ul>" tag so that the entire list looks something like this:

Code: Select all

<ul style="color: red;">
	<li>one</li>
	<li>two</li>
	<li>three</li>
</ul>
You can change the color by typing in a color name (basic colors will work), or putting in a HEX code for the color you like. You can read about color HEX codes here