Inner Border Width 
$stylevar[cellspacing]

The inner border width StyleVar is used as the value for the 'cellspacing' attribute of all tables in vBulletin. It controls the width of the border apparent between table cells.

By setting a value of 1 or greater, a margin will appear between table cells, showing the background color of the underlying table as defined in the .tborder CSS class.

At the default value of 1, a thin, one pixel border is seen between table cells:

By increasing the value to 3, the border between cells grows thicker:

Setting the value to 0 will result in no margin between cells, so no inner border will appear at all.

Example of $stylevar[cellspacing] in use:
<table class="tborder" cellspacing="$stylevar[cellspacing]" cellpadding="5">
<tr>
    <td class="alt1">First Cell</td>
    <td class="alt2">Second Cell</td>
</tr>
</table>
This StyleVar can take any numerical value from 0 to 100 and upwards, although you will find that only 0, 1 and possibly 2 are useful values. Values greater than 2 tend to look extremely ugly.
Note:
Do not add 'px' to the value of this StyleVar.
Copyright © 2024 MH Sub I, LLC dba vBulletin. All rights reserved. vBulletin® is a registered trademark of MH Sub I, LLC dba vBulletin.