However if I use an <OL> the numbering is just plain text and hard to
see. Is there a way to get the numbers (and only the numbers) to
bold ?
I want it to look like:
<b>1.</b> This is the first item.
<b>2.</b> This is the 2nd item.
and so on when it displays.
<STYLE TYPE="text/css">
ol {font-weight: bold ;}
span {font-weight: NORMAL ;}
</STYLE>
<BODY>
<ol>
<li>
<div>Line 1</div>
</li>
<li>
<div>Line 2</div>
</li>
</ol>
<ol>
<li>
<span>Line 1</span>
</li>
<li>
<span>Line 2</span>
</li>
</ol>
</BODY>