Add a class
Find these lines in "inc_header.asp"
"<style type=""text/css"">" & vbNewLine & _
"<!--" & vbNewLine & _
"body {" & vbNewLine & _
"scrollbar-face-color:" & strPopUpTableColor & ";" & vbNewLine & _
"}" & vbNewLine & _
"a:link {" & vbNewLine & _
"color:" & strLinkColor & ";" & vbNewLine & _
"text-decoration:" & strLinkTextDecoration & "" & vbNewLine & _
"}" & vbNewLine & _
"a:visited {" & vbNewLine & _
"color:" & strVisitedLinkColor & ";" & vbNewLine & _
"text-decoration:" & strVisitedTextDecoration & "" & vbNewLine & _
"}" & vbNewLine & _
"a:hover {" & vbNewLine & _
"color:" & strHoverFontColor & ";" & vbNewLine & _
"text-decoration:" & strHoverTextDecoration & "" & vbNewLine & _
"}" & vbNewLine & _
"a:active {" & vbNewLine & _
"color:" & strActiveLinkColor & ";" & vbNewLine & _
"text-decoration:" & strActiveTextDecoration & "" & vbNewLine & _
"}" & vbNewLine & _
add this after that-
".whatever {" & vbNewLine & _
"font-weight:bold;" & vbNewLine & _
"}" & vbNewLine & _
Then do a search for "spnMessageText" in "default.asp" and add the class where ever you want bold links.
Like this-
<span class=""spnMessageText""><a href="""
add class
<span class=""spnMessageText, whatever""><a href="""
Hope this helps