Hello I'm trying to figure out the same question that what was asked in this thread How to use CSS to surround a number with a circle?
However - everytime I do it, the shape becomes oval, regardless if I add width/height or not...
I created a jsfiddle here http://jsfiddle.net/dDuFv/
<ul class="numberCircle">
<li>testing</li>
<li>testing</li>
<li>testing</li>
</ul>
CSS
.numberCircle { list-style-type:none; font-size:18px; }
.numberCircle li { margin:20px;}
.numberCircle li:before {
border-radius:100%;
counter-increment: section;
content:counter(section);
background: #f1562c;
color:#fff;
padding:2px;
border:none;
text-align: center;
}
but it's just not working!
Thanks for any help!