Is it possible to use letters with ")" instead of "." in an ordered list format? For example:
a) Some text...
b) Some text...
c) Some text...
Currently, I am seeing:
a.) Some text...
b.) Some text...
c.) Some text...
I need to remove the periods.
CSS:
.theclass ol li{
margin: 0 0 0 1em;
}
.theclass ol li:before{
content: ') ';
position: absolute;
margin-left: -3.4em;
text-align: right;
width: 3em;
}
HTML:
<div class="theclass">
<ol type="a">
<li>Some text...</li>
<li>Some text...</li>
<liSome text... </li>
</ol>
</div>