Hi,
I really believe that this thread should belong to this forum 
well for starters the columns look right in Opera 7.21 and Firefox 0.8 but in IE 6 I clearly see the extra space
Experimenting I found that to eliminate that obnoxious space one method could be removing the width attribute from the TD tag corresponding to the affected row. That is if you previously had this
HTML Code:
</tr><tr>
<td width='100'><div align='right'><strong>James</strong></div></td>
<td width='50'><div style='padding-right: 0px;' align='right'>50</div></td>
<td><div align='center'>-</div></td>
<td width='50'><div align='left'>0</div></td>
<td width='50'><div style='padding-right: 0px;' align='right'>50</div></td>
<td><div align='center'>-</div></td>
<td width='50'><div align='left'>0</div></td>
<td width='30'> </td>
<td><div align='center'>12 </div></td>
</tr><tr>
you would change it to
HTML Code:
</tr><tr>
<td width='100'><div align='right'><strong>James</strong></div></td>
<td><div style='padding-right: 0px;' align='right'>50</div></td>
<td><div align='center'>-</div></td>
<td width='50'><div align='left'>0</div></td>
<td><div style='padding-right: 0px;' align='right'>50</div></td>
<td><div align='center'>-</div></td>
<td width='50'><div align='left'>0</div></td>
<td width='30'> </td>
<td><div align='center'>12 </div></td>
</tr><tr>
HTH
Bookmarks