I'll say it again, nice hack/share/whatever you want to call it.
As far as changing the color of the font, etc. I use dark and light styles on my site, so I made the background clear
Code:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" style="background-color: none; border: 1px solid Black; padding: 1px;"><normalfont>{param}</normalfont></td>
</tr>
<tr><td align="center">
<img src="http://www.dancingmokey.com/******/sign.gif" alt="" border="0">
</td></tr>
</table>
if you want to change the font to bold, blue, comic sans:
Code:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" style="background-color: none; border: 1px solid Black; padding: 1px;"><b> <font face="Comic Sans"; color=blue>{param}</font></b></td>
</tr>
<tr><td align="center">
<img src="http://www.dancingmokey.com/******/sign.gif" alt="" border="0">
</td></tr>
</table>