Crash's Hover Color Mod
Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/70967?pagenum=1
05 November 2025, 03:49
Topic
Carefree
Crash's Hover Color Mod
10 May 2015, 22:48
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 & _
Replies ...
Maxime
18 May 2015, 21:06
Hello Carefree
Which page please?
Carefree
18 May 2015, 23:39
That's in "default.asp", somewhere around line 48 if the hover mod was the only one installed.
Maxime
19 May 2015, 04:21
Thank you, I do not have this mod installed.