What is the best way to get a post in HTML format to look acceptable in these baords?
I am starting a new notebook computer support board, and want to add content quickly.
I need to move several HTML pages to a format that is readable to the board. I also have them in MSWord format. From what I can tell, tables are a complete nightmare to work with.
Any ideas?
Matt
http://www.notebookdiscussions.com/
Actually, tables aren't a complete nightmare if you do them correctly, but it is a bit tricky because you can't use useful attributes like "colspan"...
The correct format for a table is something like this:
[table]
[tr][td]content[/td][td]more content[/td][/tr]
[tr][td]Row 2, column 1[/td][td]Row 2, column 2[/td][/tr]
[/table]That produces the following:
| content | more content |
| Row 2, column 1 | Row 2, column 2 |
The only HTML tags you can use in SMF are <a href="blah">...</a>, <img src="blah" /> and the usual <b>...</b>, <i>...</i>, <u>...</u> and maybe a couple others...