SUCCESS :-) !!!
Combination of HTML and CSS
Firstly some research http://www.w3schools.com/cssref/pr_ta...
Secondly changed the HTML template for reports module
<div>
<table class="ff2" border="1" width="50%">
<tbody>
<tr>
<td width="70%"><a href="/performance?PlayerName=[PlayerName]">[Name]</td>
<td width="15%">[Starting]</td>
<td width="15%">[Next Time]</td>
</tr>
</tbody>
</table>
</div>
Thirdly the added a CSS file just for that page
table.ff1 {(table-layout:auto}
table.ff2 {(table-layout:fixed}
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
The outcome exactly what I wanted (at time of writing this the links are there but don't work 20th Nov 2013)
http://www.davehassall.co.uk/archive/...
The table header is achieved using a Text/HTML module using the same properties
Rock and Roll :-)