1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
ol li { list-style-type: none; counter-increment: list; position: relative; } ol li:after { content: counter(list) "."; position: absolute; left: -2.5em; width: 2em; text-align: right; color: black; } |
or you could use an icon
1 2 3 4 5 6 7 |
.featurelistleft li { background:url(images/logoicon.png) 0 0 no-repeat; list-style:none; } |