PDA

View Full Version : League Table for Vbulletin


Per1213
07-10-2008, 11:15 AM
Hi everyone,

At the moment I have a table similar to the "who's online" table at the bottom that constitutes our poker league table. Unforunately... it looks HORRIBLE! Can anyone please guide me in the way that I could actually create a table that looked similar to a proper league table.

I need the catagories "Position" "Name" and "Points".

Any feedback is hugely appreciated! To see what I have got at the moment, look at this league table (www.pokerisrigged.com) on the front page.

Opserty
07-10-2008, 08:50 PM
Try something like:

<table...>
<thead>
<tr>
<td colspan="5"> Poker League Table</td>
</tr>
<tr>
<td></td>
<td class="thead">Position</td>
<td class="thead">Name</td>
<td class="thead">Points</td>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="4">CUP IMAGE HERE</td>
<td class="alt1">1st</td>
<td class="alt1">Platefish</td>
<td class="alt1">46pts</td>
</tr>
<tr>
<td class="alt1">1st</td>
<td class="alt1">Platefish</td>
<td class="alt1">46pts</td>
</tr>
<tr>
<td class="alt1">1st</td>
<td class="alt1">Platefish</td>
<td class="alt1">46pts</td>
</tr>
<tr>

<td class="alt1" colspan="3">League Tables LINK</td>
</tr>

</table>

You'll need to fill it in properly, that is just a guide.