The "font" tag is being depreciated from HTML, you can get the same results by using "SPAN" instead.
Change:
Code:
<font style="color:$post[fieldx]">$post[musername]</font>
to:
Code:
<span style="color:$post[fieldx]">$post[musername]</span>
But my issue is when I do this the color of the link no longer changes when the house hovers over it- is there any way to allow it to keep changing color when you mouse-over?