Unfortunately, it is not possible to change the colour of the bullet points. Luckily tho, the HTML Code needed is not that difficult.
This, what you could try:
Go to HTML section in the right upper corner in your Marketing Mail:
Then select Format Document, makes it easier to work in as well.
Then try to find the area where the bullet points are. Often recognisable with the beginning <ul>
Then above it, enter the following code:
<style>
ul {
list-style:none;
}
ulli::before {
content:"\2022";
color:red;
font-weight:bold;
display:inline-block;
width:1em;
margin-left:-1em;
}
</style>
It will look a bit like this: I know, it is not fancy but hey, it does the trick:
The colour you can change with words such as: red, green. blue, black, etc. however, you can also delete the word and change it with a HEX code such as #2266e3
If correct, it should turn out like this:
I hope this works for you.
Let me know and have a nice day!
Cheerio,
Richard
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.