Indsæt for det første følgende:
<style type="text/css">
A:link { text-decoration: none; font-weight: normal ;font-size: 10pt; color: 000000;}
A:visited { text-decoration: none;font-weight: normal ;font-size: 10pt; color: 000000;}
A:active { text-decoration: none;font-weight: normal ;font-size: 10pt; color: 000000;}
A:hover { text-decoration: none;font-weight: normal ;font-size: 10pt; color: 000000;}
</style>
Så skal du også have det her:
<script language="JavaScript">
function co(element,mode) {
if (mode=="in") {
cursortype = 'hand'
colorval = '#3399FF'
} else if (mode=="out") {
cursortype = ''
colorval = '#0080C0'
}
element.style.background=colorval;
element.style.cursor=cursortype;
}
</script>
(farver er dem jeg har valgt på den side jeg har copy/pasted fra,
www.norrea-bordtennis.dk )
Så skal du indsætte følgende i din <tr>
onmouseover="co(this,'in');" onmouseout="co(this,'out');"