Crash's Hover Color Mod - Posted (1659 Views)
Advanced Member
Carefree
Posts: 4224
4224
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 & _
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Average Member
Maxime
Posts: 521
521
Hello Carefree

Which page please?
Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)
Posted
Advanced Member
Carefree
Posts: 4224
4224
That's in "default.asp", somewhere around line 48 if the hover mod was the only one installed.
Posted
Average Member
Maxime
Posts: 521
521
Thank you, I do not have this mod installed.
Cordially,
Maxime

Taxation consists in so plucking the goose to get the most out of feathers with the least possible cries.(Jean-Baptiste Colbert)
 
You Must enter a message