I have a solution if you haven't found one yet Tested this time.
I had this in a forum that I converted most of the html tags to css. Just add it in the <style> in "inc_hader.asp".
Note: I didn't include the "text-decoration" for hover, active and visited because I use the same for all. You will have to write them out like "spnMessageText" if you need them.
"/* Active users table */ " & _
".aulink a:link, .aulink a:visited, .aulink a:hover, .aulink a:active {color:" & strDefaultFontColor & "; " & _
"text-decoration:" & strForumLinkTextDecoration & "; " & _
"} " & _
".aumodlink a:link, .aumodlink a:visited, .aumodlink a:hover, .aumodlink a:active {color:" & strAUModColor & "; " & _
"text-decoration:" & strForumLinkTextDecoration & "; " & _
"} " & _
".auadminlink a:link, .auadminlink a:visited, .auadminlink a:hover, .auadminlink a:active {color:" & strAUAdminColor & "; " & _
"text-decoration:" & strForumLinkTextDecoration & "; " & _
"} " & _
"/* End Active User CSS */ " & _
And then change the coding a little in "topic.asp".
if Member_Level = 3 then
topicAUColor = "auadminlink" '## Don't forget the parenthesis around the text
elseif Member_Level = 2 then
topicAUColor = "aumodlink"
else
topicAUColor = "aulink" '## Or "spnMessageText" if you want.
end if
Do the same for replies.
Then
<span class=""" & topicAUColor & """>
or
<span class=""" & replyAUColor & """>