Different colored bullets in email
-
- AllPro Expert
- Joined: Mon Apr 20, 2015 2:47 pm
- Website: www.crconversations.com
- Contact:
Different colored bullets in email
Hello! Is it possible, when writing an email and using bullets to make the bullets a different color other than black?
-
- Support Team
- Website: www.allprowebtools.com
Re: Different colored bullets in email
This is possible, but only by using inline styling. For example we can add color to the bullets here:- one
- two
- three
and change the opening "<ul>" tag so that the entire list looks something like this:Code: Select all
<ul> <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 hereCode: Select all
<ul style="color: red;"> <li>one</li> <li>two</li> <li>three</li> </ul>
- Support Team