Quote:
Originally Posted by DaleM
Here's how I did mine in 4.0.0 and it's still working in 4.0.2 PL1.
In Username HTML Markup I make the username a unique color by adding <b><font color="#FF0000"> in the opening tag block and </font></b> in the closing tag box. This makes their screen name red in color and bold.
|
Sorry to but in here but the above code is depricated. Instead of the
tags should be used
HTML Code:
<strong></strong>
and instead of
HTML Code:
<font color="#FF0000"></font>
it should be used:
HTML Code:
<span style="color: #FF0000;"></span>