The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
I discovered that the method Crash used for his hover-color mod is not supported by Firefox. The following change will make it work on all browsers.
Find this line in the instructions:
Response.Write " <tr bgcolor=""" & strForumCellColor & """ onMouseOver=""mOvr(this,'" & strOnHoverCellColor & "')"" onMouseOut=""mOut(this,'" & strOutHoverCellColor & "')"">" & vbNewline & _
Change it to this:
Response.Write " <tr id=""hover"" bgcolor=""" & strForumCellColor & """"
%>
onMouseOver=style.backgroundColor="<%=strOnHoverCellColor%>"
onMouseOut=style.backgroundColor="<%=strForumCellColor%>"
<%
Response.Write ">" & vbNewline & _
Find this line in the instructions:
Response.Write " <tr bgcolor=""" & strForumCellColor & """ onMouseOver=""mOvr(this,'" & strOnHoverCellColor & "')"" onMouseOut=""mOut(this,'" & strOutHoverCellColor & "')"">" & vbNewline & _
Change it to this:
Response.Write " <tr id=""hover"" bgcolor=""" & strForumCellColor & """"
%>
onMouseOver=style.backgroundColor="<%=strOnHoverCellColor%>"
onMouseOut=style.backgroundColor="<%=strForumCellColor%>"
<%
Response.Write ">" & vbNewline & _