Author:
Description: The Table BBCode lets You insert configurable tables in the posts.
"Corners" BBCode:
Code: Select all
[corners={IDENTIFIER}]{TEXT}[/corners]
Code: Select all
<div class="{IDENTIFIER}">
<div class="inner">
<span class="corners-top"><span></span></span>
{TEXT}
<span class="corners-bottom"><span></span></span>
</div>
</div>
Code: Select all
[table={IDENTIFIER}]{TEXT}[/table]
Code: Select all
<table class="{IDENTIFIER}" cellspacing="1" width="100%">
{TEXT}
</table>
Code: Select all
[tr={IDENTIFIER}]{TEXT}[/tr]
Code: Select all
<tr class="{IDENTIFIER}">
{TEXT}
</tr>
Code: Select all
[td={NUMBER},{IDENTIFIER}]{TEXT}[/td]
Code: Select all
<td class="{IDENTIFIER}" colspan="{NUMBER}">{TEXT}</td>
Code: Select all
[th={NUMBER}]{TEXT}[/th]
Code: Select all
<th colspan="{NUMBER}">{TEXT}</th>
Code: Select all
[thead]{TEXT}[/thead]
Code: Select all
<thead>{TEXT}</thead>
Code: Select all
[tbody]{TEXT}[/tbody]
Code: Select all
<tbody>{TEXT}</tbody>
Using:
Code: Select all
[corners=forumbg forumbg-table][table=tablebg table1][thead][tr=][th=2]This is a header[/th][/tr][/thead][tbody][tr=bg1][td=1,]This is the left cell[/td][td=1,]This is the right cell[/td][/tr][tr=bg2][td=1,]This is another row[/td][td=1,]This is the second cell[/td][/tr][/tbody][/table][/corners]
Not available