Freepages-Help-L Archives

Archiver > Freepages-Help > 2004-02 > 1076120813


From: Pat Asher <>
Subject: Re: [FreeHelp] Re: extra <TR at page top
Date: Fri, 06 Feb 2004 21:26:53 -0500
In-Reply-To: <11.21dea8ea.2d556780@aol.com>


At 04:56 PM 2/6/2004, you wrote:
>Pat,
>
>I wrote this with Microsoft Word and that program made it in HTML for me.
>Therefore I have no idea what tablecode's are.
>Is that the
></TD>
></TR>
><TR><TD VALIGN="TOP">
><P>&#9;</TD>
></TR>
><TR><TD VALIGN="TOP">
>


Anke,

It is the extra codes that are a problem -- ones that have become
mismatched when you added or edited your text. A TABLE looks like this:

<TABLE>
<TR>
<TD>some content</TD>
</TR>
</TABLE>

TR stands for TABLE ROW and TD stands for TABLE DATA.

Each "opened" tag (TABLE, TR and TD) must be "closed" by using the same tag
with a forward slash. That tells the browser that this particular row or
data cell is finished. If you forget to close some of the tags, or add
extra unneeded ones, it can cause the contents of the table not to display
at all in some browsers.

In the case of the page you asked about, you had several open TR tags that
had not been closed. In this case, the browser didn't know what to do with
them, so it displayed them at the top of the page. You need to go through
your code and remove any "extras", and/or close all "open" tags.

Pat



This thread: