I've just installed WebTemplates on a new forum. I used it very successfully on a forum I sold a few years ago and, IMHO, it remains far and away the best CMS mod available for vBulletin.
One slight problem I'm experiencing is with table styling. It's possible I solved this when I used it before, but I can't get it to work now.
The rendered HTML table looks like this:
Code:
<table cellspacing="5" cellpadding="5" border="1">
<thead>
<tr>
<th>Username</th>
<th>No. of referrals</th>
</tr>
</thead>
<tbody><tr>
<td>Prof Pat Pending</td>
<td>3</td>
</tr><tr>
<td>Raven</td>
<td>1</td>
</tr><tr>
<td>Water Cooled</td>
<td>1</td>
</tr></tbody>
</table>
The border is rendered correctly, but:
a) the TH attribute does not render as bold;
b) the cellpadding is ignored;
c) the cellspacing is ignored.
Whilst I appreciate that the general consensus is to avoid TABLE tags and replace with DIVs, this is tabular data so perfectly suited to a TABLE.
Are there vBulletin CSS table classes that I've overlooked which might help me to render my tables in a suitably vBulletinesque way?
Thanks in advance!