Page 1 of 1

Table Maker Guide

PostPosted: March 18th, 2011, 10:26 pm
by Jessica
The table maker only creates tables with 2 rows and 3 columns. even if you input different amount of rows and columns, it will still generate a table with 2 rows and 3 columns. you have to manually edit the bbcode to get the table you want. this guide will help you add and remove rows and columns

outermost tag is
Code: Select all
[table border=1 cellpadding=0 cellspacing=0 width=25% height=50px]xxx[/table]


Add a row of 2:
Code: Select all
[tr][td align=center valign=middle bordercolor=#666666 bgcolor=#CCCCCC]xxx[/td]  [td align=center valign=middle bordercolor=#666666 bgcolor=#CCCCCC]xxx[/td][/tr]

note the [tr]tag. that is kind like the row tag. [td] will add another box to that row.


To add another row or more: keep adding
Code: Select all
[tr][td align=center valign=middle bordercolor=#666666 bgcolor=#CCCCCC]xxx[/td]  [td align=center valign=middle bordercolor=#666666 bgcolor=#CCCCCC]xxx[/td][/tr]



To add another box in a row add
Code: Select all
[td align=center valign=middle bordercolor=#666666 bgcolor=#CCCCCC]xxx[/td]
after another one of those inside the [tr] tags.



Admins, feel free to edit this post to adjust any directions to make it clearer or fix any errors.