I wanted to bump this up because I use alot of tables on my forum and I found out something regarding the tables after your forum has been upgraded:
You can no longer use the code:
[b] [/b]
at the very beginning/end when creating a table. You now have to use that code every time you want something on a particular line in bold.
You also no longer have to use the code:
[table][/table]
at the beginning/end.
Example:
| Test | Column 1 | Column 2 |
| Test 1 | abcdefg | 12345 |
| Test 2 | hijklmnop | 67890 |
| Test 3 | qrstuvwxyz | 12345 |
The code for the above table is:
[tr][td][u][b]Test[/b][/u][/td][td][u][b]Column 1[/b][/u][/td][td][u][b]Column 2[/b][/u][/td][/tr]
[tr][td]Test 1 [/td][td]abcdefg[/td][td]12345[/td][/tr]
[tr][td]Test 2[/td][td]hijklmnop[/td][td]67890[/td][/tr]
[tr][td]Test 3[/td][td]qrstuvwxyz [/td][td]12345[/td][/tr]
I showed the first 2 lines with the bold code and the other two without so you can see the difference