that can easily be done by defining it via javascript...
Code:
<script language="JavaScript1.2">
function changeto(highlightcolor){
source=event.srcElement
if (source.tagName=="TR"||source.tagName=="TABLE")
return
while(source.tagName!="TD")
source=source.parentElement
if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
source.style.backgroundColor=highlightcolor
}
function changeback(originalcolor){
if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=="ignore")
return
if (event.toElement!=source)
source.style.backgroundColor=originalcolor
}
</script>
Then, with your forumdisplay etc, modify the table so that it is:
Code:
<table onMouseover="changeto('#214A73')" onMouseout="changeback('#000000')" border="0" cellpadding="0" cellspacing="0" bordercolor="#000000" align="center" width="115">
can easily be customized