MyBB Community Forums

Full Version: set theme cellpadding and cellspacing ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do we set theme cellpadding and cellspacing ?

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
that is in theme properties
admin panel --> themes --> edit theme --> Edit Theme Properties

Table Spacing
The width of the inner padding of table cells, in pixels.
This is HTML's cellpadding attribute of the table tag.

Inner Table Border Width
The amount of padding between each table cell, in pixels.
This is HTML's cellspacing attribute of the table tag.
Thanks solved