Here is a short tutorial on how to create a table within your post.
First understand the nesting of tags which goes as follows:
Code: Select all
[table]
...[tr] <- tr is “table row”
.....[td] <- td is “table data” (i.e. cell in the row)
........”data for this column/cell”
.....[/td] <- End table data
...[/tr] <- End table row
[/table] <-End table
Code: Select all
[table]
[tr]
[td]........”data for row 1, column 1”.....[/td]
[td]........”data for row 1, column 2”.....[/td]
[td]........”data for row 1, column 3”.....[/td]
[/tr]
[tr]
[td]........”data for row 2, column 1”.....[/td]
[td]........”data for row 2, column 2”.....[/td]
[td]........”data for row 2, column 3”.....[/td]
[/tr]
[/table]
Here is a table code example that creates the distribution chart for the “X6” set. The first row becomes the “header” text row, the second row is the X6 distribution information.
Code: Select all
[table]
[tr]
[td][color=blue][b]Axial Set / # Rolled[/color][/b][/td][td][color=blue]...2..[/color][/td][td][color=blue]...3..[/color][/td][td][color=blue]...4..[/color][/td][td][color=blue]...5..[/color][/td][td][color=blue]...6..[/color][/td][td][color=darkred]...7..[/color][/td][td][color=blue]...8..[/color][/td][td][color=blue]...9..[/color][/td][td][color=blue]..10..[/color][/td][td][color=blue]..11..[/color][/td][td][color=blue]..12..[/color][/td]
[/tr]
[tr]
[td][color=Blue]3-4/5-2 (X6)[/color][/td][td][center]1[/center][/td][td][center]1[/center][/td][td][center]1[/center][/td][td][center]2[/center][/td][td][center]2[/center][/td][td][center][color=darkred]2[/color][/center][/td][td][center]2[/center][/td][td][center]2[/center][/td][td][center]1[/center][/td][td][center]1[/center][/td][td][center]1[/center][/td]
[/tr]
[/table]
P.S. The tables on the "ForumPosts" tab in BoneTracker are supported on this site.