I'm trying to have the catagory tablecells as links to the boards. This is what I tried...
In Boardindex.template.php I changed this :
<td class="windowbg2" align="left" width="60%">to this :
<td class="windowbg2" align="left" width="60%" onmouseover="this.className=\'windowbg\'" onmouseout="this.className = \'windowbg2\'" onClick="document.location=\'', $board['link'], '\'">Which didn't work exactly:

So what can I use instead of ', $board['link'], ' to link each sell to it's board? Or is there another way of doing it? Please help! Thanks!
onClick="document.location=\'', $settings['default_theme_url'], 'index.php?board=', $board['id'], '\'"
i am not sure but think that this will work.
That worked thanks so so much! It rocks!
I tried to work out how to do that for the boards themselves too but I couldn't figure out where to put the code or what the code was. Would that be in messageindex.template.php? Where abouts would it go?
I tried this over and over with no success. In the default template around 137 I found this to work.
<td class="windowbg2" onmouseover="this.className=\'windowbg\'" onmouseout="this.className = \'windowbg2\'" onClick="document.location=\'', $settings['default_theme_url'], 'index.php?board=', $board['id'], '\'">
Just thought I'd share that with everyone.
make a block element with 100% width and height? <a href="" style="display: block; width: 100%; height: 100%;">Text</a>