Different colored bullets in email

Need help? Please give a detailed explanation of your problem.
Post Reply
Gchild1730
AllPro Expert
AllPro Expert
Posts: 30
meble kuchenne Mikołów Knurów Czechowice-Dziedzice
Joined: Mon Apr 20, 2015 2:47 pm
Website: www.crconversations.com
Contact:

Different colored bullets in email

Post by Gchild1730 »

Hello! Is it possible, when writing an email and using bullets to make the bullets a different color other than black?
User avatar
JohnB
Support Team
Support Team
Posts: 1022
Joined: Wed Nov 04, 2015 3:57 pm
Website: www.allprowebtools.com

Re: Different colored bullets in email

Post 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
Post Reply