I can't post a table in my forum using HTML. I have the html code on and all the tags to make a table are allowed. It'll make the table but it'll start halfway down the screen?
like this....
Any suggestions?
Thanks, Chris
my guess is that your disabling HTML in some way or another. maybe your changing HTML characters with htmlspecialchars?
Post some code and others will find it MUCH easier to help you.
EDIT damn should really read the question properly before jumping to answers, sorry but im as lost as you are! EDIT
hmm...it looks fine in ie6 and firefox. what do you see? snapshot?
sorry....I should've been more specific The link is what I'm trying to do...
Here is the link to what happens when I use the roughly the exact same code in my forum.
In the config. I allowed the following tags: b,i,u,pre,table,tr,td,th,style
Thanks
Your table is malformed. You have breaks between the rows, and between the row and the column....browsers push these breaks to the top (for some unknown reason to me). This is similar to this thread
Your problem lies in
<tr><td><goodbr></td><badbr></tr><badbr>
I see those <br>'s when I view the source, but I didn't put those tags in my post.
?
It could be the way you are parsing the data, storing, or showing the data.
It'll work if I group all the tags together w/ no spaces.... I think if you type in...
<tr> <td>ED3</td> <td>1.5L</td> <td>USDM</td> <td>All</td> <td>4-door DX/LX</td> </tr>
Every new line, it'll put a break <br> It'll work if I put it all together like... <tr><td>ED3</td><td>1.5L</td><td>USDM</td><td>All</td> <td>4-door DX/LX</td></tr>
Oh well