When I copy that code into my template, it doesn't look too good, just keeps a basic background with no borders or category headings.
I need to have it look like the vb category headings and table classes as shown here:
PHP Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" width="100%">
<div style="text-align: center;">
New Table Title
</div>
</td>
</tr>
<tr>
<td class="alt1" width="100%">
<div class="smallfont">
This is a vBulletin table. Table class: <strong>tborder</strong>. 1st Td class: <strong>tcat</strong>. 1st Td text align: <strong>center</strong>. Second Td class: <strong>alt1</strong>. Border: 0. Width: 100%. Align: center.
</div>
</td>
</tr>
</table>
I have tried replacing things but it messes up the whole style of the table. I just want to create a table that looks similar to the profile link above but with the table code I've just posted.