Quote:
Originally Posted by Russ_T
Hi all,
v3 articles is working pretty well for me, thanks!
I have one problem and I cannot figure it out. I did a little page in dreamweaver, and tried to add the article by pasting in the html. I then when into the database and changed the post field by pasting in the html.
http://www.zclub.net/forum/article.php?a=18
As you can see its really stretched, I cannot figure out why though. Can anyone help please?
Many thanks
|
I too had the same problem, it's caused by the whitespace between the different table tags.
Now it will probably look like this:
<table>
<tr>
<td>Content
</td>
</tr>
</table>
Change so that it's like this:
<table><tr><td>Content</td></tr></table>