Im really not sure what you are trying to do, are trying to make a side by side table on your rakeback page?
Edit: Quick fix, you could do this with divs to make it look better, you could use bg images and all, but I think this would work with what you are trying to do.
Code:
<table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td>
<table style="text-align: left; width: 95%; margin-left: auto; margin-right: auto;" border="1px" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<th style="text-align: center;">Poker Room</th>
<th style="text-align: center;">Rakeback</th>
<th style="text-align: center;">Bonus</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</td>
<td style="background-color: rgb(0, 0, 0); width: 3px;"></td>
<td>
<table style="text-align: left; width: 95%; margin-left: auto; margin-right: auto;" border="1px" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<th style="text-align: center;">Poker Room</th>
<th style="text-align: center;">Rakeback</th>
<th style="text-align: center;">Bonus</th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
Bookmarks