After proudly coloring my liststyle bullet without any image url or span tags, via:
ul{ list-style: none; padding:0; margin:0; }
li{ padding-left: 1em; text-indent: -1em; }
li:before { content: "■"; padding-right:7px; }
Although these stylesheets work perfectly down to the rounded borders and other css3 stuff, and although the recipient of the email (for instance, Eudora OSE 1) renders all css styles correctly, just like in a browser, there is one problem: the bullets like •
or ■
become converted into &#adabacadabra;
Appearing finally like so in emails:
How do I proceed from here?
list-style-type: square;
for the ul element (and remove yourli:before
)? – Aldwinlist-style-*
properties apply to LI elements. Therefore, it is best to declare them inside theli { }
rule. – Melonlist-style
on the UL. However, in the above code, both theul { }
andli { }
rules are present, and it makes more sense to define the property on the element on which it applies (which is LI). But it's fine either way. – Melonlist-style-type: square;
guarantee mee a colored bullit ( while not coloring the rest of the LI items? Because that is really the premises of my previous as well as this question! – Gnosticism&#adabacadabra;
. – Eldrida