[wd_asp elements=’search’ ratio=’100%’ id=1]

Ordered list colour numbers differently

12th June 2014

CSS

Css - Codehaven

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;

}