Custom li list-style with font-awesome icon
The CSS Lists and Counters Module Level 3 introduces the ::marker pseudo-element. From what I’ve understood it would allow such a thing. Unfortunately, no browser seems to support it. What you can do is add some padding to the parent ul and pull the icon into that padding: ul { list-style: none; padding: 0; } … Read more