I'd very much appreciate if someone just made these cells of mine clickable. When I say clickable I mean I want the whole cell to function as a link (not jus the text in it). As you can see I already made the cell change their colors on mouseover, but can't figure out how to make cell function as link altogether... I'm doing this for a club and I don't have time to go through all the stuff, but I fancy the whole cell to be a link. So please don't delete this post, yeah I'm a newbie, I'm not gonna spam this site with other questions, I just need help on this one. Thanks!
So here's the code of the cell part I've done so far:
<th width="170" rowspan="2" align="center" valign="top" scope="row"><table width="170" border="0" align="center" cellpadding="4" cellspacing="4">
<tr bordercolorlight="#FFFFFF" onmouseout="this.bgColor = '#ffffff'" onmouseover= "this.bgColor = '#F0F0F0' ">
<th scope="col"><a href="index.html">Početna / Vijesti</a></th>
</tr>
<tr>
<tr bordercolorlight=""="#FFFFFF" onmouseout="this.bgColor = '#ffffff'" onmouseover="this.bgColor = '#F0F0F0' ">
<th scope="col"><a href="o nama.html">O nama</a></th>
<tr>
<tr bordercolorlight=""="#FFFFFF" onmouseout="this.bgColor = '#ffffff'" onmouseover="this.bgColor = '#F0F0F0' ">
<th align="center" scope="row"><a href="termini.html">Termini treninga</a></th>
</tr>
<tr>
<tr bordercolorlight=""="#FFFFFF" onmouseout="this.bgColor = '#ffffff'" onmouseover="this.bgColor = '#F0F0F0' ">
<th scope="row"><a href="galerija.html">Galerija</a></th>
</tr>
<tr>
<tr bordercolorlight=""="#FFFFFF" onmouseout="this.bgColor = '#ffffff'" onmouseover="this.bgColor = '#F0F0F0' ">
<th scope="row"><a href="kontakt.html">Kontakt</a></th>
</tr>
</table></th>



