Instead of doing that, it would be better to apply the spnMessageText class to the Forum Description as well (since we now allow ForumCode to be used in the Forum Description, and someone might put a URL in there).
change lines #514 - #525 from this:
"<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><span class=""spnMessageText""><a href="""
if ForumFType = 0 then
Response.Write "forum.asp?FORUM_ID=" & ForumID
else
if ForumFType = 1 then
Response.Write ForumURL & """ target=""_blank"""
end if
end if
Response.Write """>" & chkString(ForumSubject,"display") & "</a></span><br />" & _
"<font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>" & _
formatStr(ForumDescription) & _
"</font></td>" & vbNewline
to this:
"<font face=""" & strDefaultFontFace & """ color=""" & strForumFontColor & """ size=""" & strDefaultFontSize & """><span class=""spnMessageText""><a href="""
if ForumFType = 0 then
Response.Write "forum.asp?FORUM_ID=" & ForumID
else
Response.Write ForumURL & """ target=""_blank"
end if
Response.Write """>" & chkString(ForumSubject,"display") & "</a><br />" & _
"<font size=""" & strFooterFontSize & """>" & _
formatStr(ForumDescription) & _
"</font></span></font></td>" & vbNewline