Ok. I figured it out. At the second <tr> I modified the code like this: (made the changes indicated below - also removed all instances of bgcolor=""" & strForumCellColor & """ from all <TD's> after the changes
...(excerpt - approx. Line 502 forum.asp)
'################ Poll Mod ################
IsPoll = arrTopicData(tIS_POLL, iTopic)
if IsPoll = 1 then
pollLink = "poll=1&"
else
pollLink = ""
end if
'##########################################
if AdminAllowed = 1 and Topic_UReplies > 0 then
Topic_Replies = Topic_Replies + Topic_UReplies
end if
'TR CELL COLOR CHANGES START HERE -----
if Topic_Sticky and strStickyTopic = "1" and IsPoll then
Response.Write " <tr bgcolor=""#ffff66"">"
elseif Topic_Sticky and strStickyTopic = "1" and not(IsPoll) then
Response.Write " <tr bgcolor=""lightblue"">"
elseif IsPoll then
Response.Write " <tr bgcolor=""mediumspringgreen"">"
else
Response.Write " <tr bgcolor=""" & strForumCellColor & """>"
end if
'TR CELL COLOR CHANGES END HERE -----
Response.Write "<td align=""center"" valign=""middle""><a href=""topic.asp?" & ArchiveLink & "TOPIC_ID=" & Topic_ID & """>"
if Cat_Status <> 0 and Forum_Status <> 0 and Topic_Status <> 0 then
...(cont...)