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
.featurelistleft li {
background:url(images/logoicon.png) 0 0 no-repeat;
list-style:none;
}











