PDA

View Full Version : Use tables in post


dilbert05
12-08-2007, 10:17 PM
I have HTML turned on.

When I post a table it adds a lot of space to the top and aligns it at the bottom of the post. When I look in the db, it's in there just as I entered it.

I noticed it does the same in a post in the forum.

Is this a limitation of vB?

tfw2005
12-08-2007, 10:25 PM
VB automatically parses line returns in forum/dynamics posts as a <br />

So if you type

<table>

<tr>

<td>

It will actually post

<table>
<br>
<tr>
<br>
<td>

If you want pure HTML in there, try removing all line returns and see if it works as you were expecting.

Our Sponsors
 

dilbert05
12-08-2007, 10:32 PM
Fantastic, thank you very much. It worked perfectly.

This is going to be very difficult, as I have a lot of entries I will be making, hundreds, and will be using a lot of tables, thousands.