Weird tables

L

Larry R.

I have 5 smallish tables on a page, each one selling a
particular product, with text and graphics. The 5 tables
line up vertically, one under the next - BUT ONLY when
I'm in the update tab (now I can't remember what that tab
is called!). But as soon as I go to preview, or
publish, there are only 4 tables vertically, and one
table is off to the right of the others, almost as if it
were starting a new column of tables. I've cut and
pasted, moved things around etc, with no luck. If I cut
the table to the right and paste it back in on the left,
then a differnt table moves over to the right! So I
don't think its a particular table with the problem. I
want all the tables to be one under the other vertically -
I never had a problem here before...any suggestions
would be greatly appreciated.

Larry
 
S

Stefan B Rusynko

Browsers will collapse empty cells
- add at least 2   or a transparent .gif

Or provide a URL




| I have 5 smallish tables on a page, each one selling a
| particular product, with text and graphics. The 5 tables
| line up vertically, one under the next - BUT ONLY when
| I'm in the update tab (now I can't remember what that tab
| is called!). But as soon as I go to preview, or
| publish, there are only 4 tables vertically, and one
| table is off to the right of the others, almost as if it
| were starting a new column of tables. I've cut and
| pasted, moved things around etc, with no luck. If I cut
| the table to the right and paste it back in on the left,
| then a differnt table moves over to the right! So I
| don't think its a particular table with the problem. I
| want all the tables to be one under the other vertically -
| I never had a problem here before...any suggestions
| would be greatly appreciated.
|
| Larry
 
S

Steve Easton

This appears to be a problem:
<body stylesrc="index.html"

and you have some fragmented table data.

line 324"
and same for line 356.
The "tr" tag was found, but it is not valid due to where it is used. It is
nested in another "tr" tag and cannot be nested.

which menas there's an error higher up
and also:

The "td" tag (opened in line 300) should be closed
before the "table" tag is closed (nesting error).
 
Top