When I try the following, the text in the table cells use verdana as the font, but not 1 as it's size.
<font face="verdana" size="1">
<table width="100%">
<tr>
<td>Row 1 - Cell 1</td>
<td>Row 1 - Cell 2</td>
</tr>
<tr>
<td>Row 2 - Cell 1</td>
<td>Row 2 - Cell 2</td>
<td>Row 2 - Cell 3</td>
</tr>
<tr>
<td>Row 3 - Cell 1</td>
<td>Row 3 - Cell 2</td>
<td>Row 3 - Cell 3</td>
<td>Row 3 - Cell 4</td>
</tr>
</table>
</font>
Any reason why, and any way I can fix this?