Forum How do I...?

Paragraph numbering

jury
Prince doesn't seem to convert paragraph numbering created using html code:

<OL>
<LI VALUE="1.">stuff</LI>
<LI VALUE="2.">stuff</LI>
<LI VALUE="3.">stuff</LI>
</OL>
mikeday
The value should just be a number, without the following period, eg. "1". Or you can use the counter-increment and counter-reset CSS properties.
jury
Thanks that worked a treat now to work out why this doesn't align="right":

<TABLE WIDTH=100%>
<TR>
<TD> </TD>
<TD> </TD>
<TD ALIGN=RIGHT><CITATION><B>Citation Number: [2009] EWHC B13 (Ch)</B></CITATION></TD>
</TR>
<TR>
<TD> </TD>
<TD> </TD>
<TD ALIGN=RIGHT><FONT SIZE=-1><CASENUM>Case No. CH/2008/PTA/0359</CASENUM></FONT></TD>
</TR>
</TABLE>
mikeday
Because the "RIGHT" is uppercase, and it appears we are checking it case-sensitively. If the align attribute is "right" then it will work, or you can add this CSS rule to work around the problem:
tr[align="RIGHT"] { text-align: right }