I'm using a pre-designed web site that allow custom pages with html
programming.
I've included the following as an example.

<b>Test 1234</b>
aaaaaaaaaaaaaaaaaaaa

The above displays the top text in bold, and the other text. It is at the
top of the page. However, when I try and incorporate a sample table (below),
it seems to incorporate a large vertical space before and after the table (ie
blank area at top of page). When I add the below programming directly after
the programing at top, the top text is displayed at the top, but there is
still the same distance (space) before the table starts. Any suggestions.

<TABLE BORDER=1>
<TR><TH>Name</TH> <TH>Extension</TH></TR>
<TR><TD>Raha Mutisya</TD> <TD>1493</TD></TR>
<TR><TD>Shalom Buraka</TD> <TD>3829</TD></TR>
<TR><TD>Hallie Curry</TD> <TD>8372</TD></TR>
<TR><TD>Shari Silberglitt</TD> <TD>4827</TD></TR></TABLE>

Re: HTML unused vertical space around table by Murray

Murray
Wed Mar 29 19:50:36 CST 2006

What you are interpreting as space above the table, is actually space within
the table.

Try changing this -

<TABLE BORDER=1>
<TR><TH>Name</TH> <TH>Extension</TH></TR>

to this -

<table border="1" cellspacing="0" cellpadding="0">
<tr><th>Name</th> <th>Extension</th></tr>

(note the use of lower case, and properly quoted attribute values)

and see what you get.

By the way, this is invalid -

> <b>Test 1234</b>
> aaaaaaaaaaaaaaaaaaaa

It would have to be -

<p><b>Test 1234</b>
aaaaaaaaaaaaaaaaaaaa</p>

or something....

--
Murray
--------------
MVP FrontPage


"Scott" <Scott@discussions.microsoft.com> wrote in message
news:B5E6DC58-D2FC-40F8-BFAB-8312AB30C18A@microsoft.com...
> I'm using a pre-designed web site that allow custom pages with html
> programming.
> I've included the following as an example.
>
> <b>Test 1234</b>
> aaaaaaaaaaaaaaaaaaaa
>
> The above displays the top text in bold, and the other text. It is at the
> top of the page. However, when I try and incorporate a sample table
> (below),
> it seems to incorporate a large vertical space before and after the table
> (ie
> blank area at top of page). When I add the below programming directly
> after
> the programing at top, the top text is displayed at the top, but there is
> still the same distance (space) before the table starts. Any
> suggestions.
>
> <TABLE BORDER=1>
> <TR><TH>Name</TH> <TH>Extension</TH></TR>
> <TR><TD>Raha Mutisya</TD> <TD>1493</TD></TR>
> <TR><TD>Shalom Buraka</TD> <TD>3829</TD></TR>
> <TR><TD>Hallie Curry</TD> <TD>8372</TD></TR>
> <TR><TD>Shari Silberglitt</TD> <TD>4827</TD></TR></TABLE>
>



RE: HTML unused vertical space around table by Scott

Scott
Wed Mar 29 20:31:02 CST 2006

Thanks, but didn't help.

I played around with it, and discovered that the spaces before and after the
table (vertically) ae equal to the rown in the table. If I have a table with
onlt one row, it displays at the top, however, if I have 10 rows, it starts
quite low down on the page. I have no idea what's causing this...

Plain text is displayed right at the top.

Re: HTML unused vertical space around table by Ronx

Ronx
Thu Mar 30 03:22:18 CST 2006

If you have published this page to a web site, please provide a link.
Otherwise, Preview your page in a browser, View Source and copy the
entire code. Then paste your entire page code here. Then we can see
what is going on. (Pasting the code from FrontPage code / html view
may hide something, hence the need for "Preview in browser".
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/

"Scott" <Scott@discussions.microsoft.com> wrote in message
news:0E14EA0E-7CD9-44EA-949A-83B7500E7476@microsoft.com...
> Thanks, but didn't help.
>
> I played around with it, and discovered that the spaces before and
> after the
> table (vertically) ae equal to the rown in the table. If I have a
> table with
> onlt one row, it displays at the top, however, if I have 10 rows, it
> starts
> quite low down on the page. I have no idea what's causing this...
>
> Plain text is displayed right at the top.



Re: HTML unused vertical space around table by SBFan2000

SBFan2000
Thu Mar 30 06:16:25 CST 2006

Is this frames? If so check the margins of the frame that has the problem.


"Scott" <Scott@discussions.microsoft.com> wrote in message
news:0E14EA0E-7CD9-44EA-949A-83B7500E7476@microsoft.com...
> Thanks, but didn't help.
>
> I played around with it, and discovered that the spaces before and after
the
> table (vertically) ae equal to the rown in the table. If I have a table
with
> onlt one row, it displays at the top, however, if I have 10 rows, it
starts
> quite low down on the page. I have no idea what's causing this...
>
> Plain text is displayed right at the top.



Re: HTML unused vertical space around table by Scott

Scott
Thu Mar 30 14:13:02 CST 2006

Code fom browser, when displayed each row in table results in a blank line
above table.

<table border="1"><BR><TR><TD>Shari Silberglitt</TD>
<TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
<TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>



Re: HTML unused vertical space around table by Murray

Murray
Thu Mar 30 14:23:45 CST 2006

Well, sure -

<table border="1"><BR><TR><TD>Shari Silberglitt</TD>
---------------------------^^^^^
<TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
---------------------------------^^^^
<TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
-----------------------------------------------^^^^^

That's invalid code, by the way.


--
Murray
--------------
MVP FrontPage


"Scott" <Scott@discussions.microsoft.com> wrote in message
news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
> Code fom browser, when displayed each row in table results in a blank line
> above table.
>
> <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
>
>



Re: HTML unused vertical space around table by Scott

Scott
Thu Mar 30 15:27:07 CST 2006

What is making this difficult is that it seesm to work fine in front page,
but I am uploading the code to a "custom page" of a web site. Everything
seems to work except for tables - they get empty spaces before and after. Is
there an html code for "backspace" or "delete lines" to see if taht would
bring it back up to it's corect position?

"Murray" wrote:

> Well, sure -
>
> <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> ---------------------------^^^^^
> <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> ---------------------------------^^^^
> <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> -----------------------------------------------^^^^^
>
> That's invalid code, by the way.
>
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Scott" <Scott@discussions.microsoft.com> wrote in message
> news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
> > Code fom browser, when displayed each row in table results in a blank line
> > above table.
> >
> > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> >
> >
>
>
>

Re: HTML unused vertical space around table by Murray

Murray
Thu Mar 30 16:50:16 CST 2006

The fact that something works without error in <your favorite HTML authoring
tool> is immaterial. It's invalid HTML and it will not work reliably.

Delete all instances of <br> that occur between <tr> and </tr> or between
<table> and <tr>.

--
Murray
--------------
MVP FrontPage


"Scott" <Scott@discussions.microsoft.com> wrote in message
news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
> What is making this difficult is that it seesm to work fine in front page,
> but I am uploading the code to a "custom page" of a web site. Everything
> seems to work except for tables - they get empty spaces before and after.
> Is
> there an html code for "backspace" or "delete lines" to see if taht would
> bring it back up to it's corect position?
>
> "Murray" wrote:
>
>> Well, sure -
>>
>> <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
>> ---------------------------^^^^^
>> <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
>> ---------------------------------^^^^
>> <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
>> -----------------------------------------------^^^^^
>>
>> That's invalid code, by the way.
>>
>>
>> --
>> Murray
>> --------------
>> MVP FrontPage
>>
>>
>> "Scott" <Scott@discussions.microsoft.com> wrote in message
>> news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
>> > Code fom browser, when displayed each row in table results in a blank
>> > line
>> > above table.
>> >
>> > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
>> > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
>> > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
>> >
>> >
>>
>>
>>



Re: HTML unused vertical space around table by Rob

Rob
Thu Mar 30 18:32:08 CST 2006

why not just let FP create the table for ya?


"Scott" <Scott@discussions.microsoft.com> wrote in message
news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
| What is making this difficult is that it seesm to work fine in front page,
| but I am uploading the code to a "custom page" of a web site. Everything
| seems to work except for tables - they get empty spaces before and after.
Is
| there an html code for "backspace" or "delete lines" to see if taht would
| bring it back up to it's corect position?
|
| "Murray" wrote:
|
| > Well, sure -
| >
| > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > ---------------------------^^^^^
| > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > ---------------------------------^^^^
| > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > -----------------------------------------------^^^^^
| >
| > That's invalid code, by the way.
| >
| >
| > --
| > Murray
| > --------------
| > MVP FrontPage
| >
| >
| > "Scott" <Scott@discussions.microsoft.com> wrote in message
| > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
| > > Code fom browser, when displayed each row in table results in a blank
line
| > > above table.
| > >
| > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > >
| > >
| >
| >
| >



Re: HTML unused vertical space around table by John

John
Thu Mar 30 18:52:35 CST 2006

Try removing the <br> tags and that should do it...
Like...

<table border="1"><TR><TD>Shari Silberglitt</TD>
<TD>4827</TD></TR><TR><TD>Shari Silberglitt</TD>
<TD>4827</TD></TR></TABLE>

Note: Table lacks "summery" Attribute

That has no space above the table..

In you sample you also had

<BR>TEST</FONT></TD></TR></TABLE>

The closing tags are from?

John Malone
=====================
"Scott" <Scott@discussions.microsoft.com> wrote in message
news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
| What is making this difficult is that it seesm to work fine in front page,
| but I am uploading the code to a "custom page" of a web site. Everything
| seems to work except for tables - they get empty spaces before and after.
Is
| there an html code for "backspace" or "delete lines" to see if taht would
| bring it back up to it's corect position?
|
| "Murray" wrote:
|
| > Well, sure -
| >
| > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > ---------------------------^^^^^
| > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > ---------------------------------^^^^
| > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > -----------------------------------------------^^^^^
| >
| > That's invalid code, by the way.
| >
| >
| > --
| > Murray
| > --------------
| > MVP FrontPage
| >
| >
| > "Scott" <Scott@discussions.microsoft.com> wrote in message
| > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
| > > Code fom browser, when displayed each row in table results in a blank
line
| > > above table.
| > >
| > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > >
| > >
| >
| >
| >



Re: HTML unused vertical space around table by Murray

Murray
Thu Mar 30 19:52:36 CST 2006

The whole set of code posted had been hit with a ball peen hammer....

--
Murray
--------------
MVP FrontPage


"John Malone" <malonejo@sbglobal.org> wrote in message
news:uhGzk1FVGHA.4792@TK2MSFTNGP14.phx.gbl...
> Try removing the <br> tags and that should do it...
> Like...
>
> <table border="1"><TR><TD>Shari Silberglitt</TD>
> <TD>4827</TD></TR><TR><TD>Shari Silberglitt</TD>
> <TD>4827</TD></TR></TABLE>
>
> Note: Table lacks "summery" Attribute
>
> That has no space above the table..
>
> In you sample you also had
>
> <BR>TEST</FONT></TD></TR></TABLE>
>
> The closing tags are from?
>
> John Malone
> =====================
> "Scott" <Scott@discussions.microsoft.com> wrote in message
> news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
> | What is making this difficult is that it seesm to work fine in front
> page,
> | but I am uploading the code to a "custom page" of a web site. Everything
> | seems to work except for tables - they get empty spaces before and
> after.
> Is
> | there an html code for "backspace" or "delete lines" to see if taht
> would
> | bring it back up to it's corect position?
> |
> | "Murray" wrote:
> |
> | > Well, sure -
> | >
> | > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> | > ---------------------------^^^^^
> | > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> | > ---------------------------------^^^^
> | > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> | > -----------------------------------------------^^^^^
> | >
> | > That's invalid code, by the way.
> | >
> | >
> | > --
> | > Murray
> | > --------------
> | > MVP FrontPage
> | >
> | >
> | > "Scott" <Scott@discussions.microsoft.com> wrote in message
> | > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
> | > > Code fom browser, when displayed each row in table results in a
> blank
> line
> | > > above table.
> | > >
> | > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> | > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> | > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> | > >
> | > >
> | >
> | >
> | >
>
>



Re: HTML unused vertical space around table by John

John
Thu Mar 30 20:44:36 CST 2006

Looks like it!

But we all know that <br> tags are not to be used in a table.

I tried to answer this without looking at your post just to see if I could
come up with the same (or close) answer that you did. 8)
Never hurts to learn some HTML - CSS

I value your opinion even when you shoot from the hip... 8)

John Malone
===================
"Murray" <forums@HAHAgreat-web-sights.com> wrote in message
news:ubnjQYGVGHA.5808@TK2MSFTNGP12.phx.gbl...
| The whole set of code posted had been hit with a ball peen hammer....
|
| --
| Murray
| --------------
| MVP FrontPage
|
|
| "John Malone" <malonejo@sbglobal.org> wrote in message
| news:uhGzk1FVGHA.4792@TK2MSFTNGP14.phx.gbl...
| > Try removing the <br> tags and that should do it...
| > Like...
| >
| > <table border="1"><TR><TD>Shari Silberglitt</TD>
| > <TD>4827</TD></TR><TR><TD>Shari Silberglitt</TD>
| > <TD>4827</TD></TR></TABLE>
| >
| > Note: Table lacks "summery" Attribute
| >
| > That has no space above the table..
| >
| > In you sample you also had
| >
| > <BR>TEST</FONT></TD></TR></TABLE>
| >
| > The closing tags are from?
| >
| > John Malone
| > =====================
| > "Scott" <Scott@discussions.microsoft.com> wrote in message
| > news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
| > | What is making this difficult is that it seesm to work fine in front
| > page,
| > | but I am uploading the code to a "custom page" of a web site.
Everything
| > | seems to work except for tables - they get empty spaces before and
| > after.
| > Is
| > | there an html code for "backspace" or "delete lines" to see if taht
| > would
| > | bring it back up to it's corect position?
| > |
| > | "Murray" wrote:
| > |
| > | > Well, sure -
| > | >
| > | > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > | > ---------------------------^^^^^
| > | > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > | > ---------------------------------^^^^
| > | > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > | > -----------------------------------------------^^^^^
| > | >
| > | > That's invalid code, by the way.
| > | >
| > | >
| > | > --
| > | > Murray
| > | > --------------
| > | > MVP FrontPage
| > | >
| > | >
| > | > "Scott" <Scott@discussions.microsoft.com> wrote in message
| > | > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
| > | > > Code fom browser, when displayed each row in table results in a
| > blank
| > line
| > | > > above table.
| > | > >
| > | > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > | > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > | > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > | > >
| > | > >
| > | >
| > | >
| > | >
| >
| >
|
|



Re: HTML unused vertical space around table by Murray

Murray
Fri Mar 31 06:12:46 CST 2006

> But we all know that <br> tags are not to be used in a table.

There is no such proscription. For example - <table><tr><td><p>Here is text
and <br>this is preceded by a line break</p></td></tr></table> - would be
perfectly valid.

Any content or presentational markup that occurs in a table, but OUTSIDE of
<td></td> is invalid, however.

> I value your opinion even when you shoot from the hip... 8)

Thanks!

--
Murray
--------------
MVP FrontPage


"John Malone" <malonejo@sbglobal.org> wrote in message
news:uZ1qK0GVGHA.5148@TK2MSFTNGP12.phx.gbl...
> Looks like it!
>
> But we all know that <br> tags are not to be used in a table.
>
> I tried to answer this without looking at your post just to see if I could
> come up with the same (or close) answer that you did. 8)
> Never hurts to learn some HTML - CSS
>
> I value your opinion even when you shoot from the hip... 8)
>
> John Malone
> ===================
> "Murray" <forums@HAHAgreat-web-sights.com> wrote in message
> news:ubnjQYGVGHA.5808@TK2MSFTNGP12.phx.gbl...
> | The whole set of code posted had been hit with a ball peen hammer....
> |
> | --
> | Murray
> | --------------
> | MVP FrontPage
> |
> |
> | "John Malone" <malonejo@sbglobal.org> wrote in message
> | news:uhGzk1FVGHA.4792@TK2MSFTNGP14.phx.gbl...
> | > Try removing the <br> tags and that should do it...
> | > Like...
> | >
> | > <table border="1"><TR><TD>Shari Silberglitt</TD>
> | > <TD>4827</TD></TR><TR><TD>Shari Silberglitt</TD>
> | > <TD>4827</TD></TR></TABLE>
> | >
> | > Note: Table lacks "summery" Attribute
> | >
> | > That has no space above the table..
> | >
> | > In you sample you also had
> | >
> | > <BR>TEST</FONT></TD></TR></TABLE>
> | >
> | > The closing tags are from?
> | >
> | > John Malone
> | > =====================
> | > "Scott" <Scott@discussions.microsoft.com> wrote in message
> | > news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
> | > | What is making this difficult is that it seesm to work fine in front
> | > page,
> | > | but I am uploading the code to a "custom page" of a web site.
> Everything
> | > | seems to work except for tables - they get empty spaces before and
> | > after.
> | > Is
> | > | there an html code for "backspace" or "delete lines" to see if taht
> | > would
> | > | bring it back up to it's corect position?
> | > |
> | > | "Murray" wrote:
> | > |
> | > | > Well, sure -
> | > | >
> | > | > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> | > | > ---------------------------^^^^^
> | > | > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> | > | > ---------------------------------^^^^
> | > | > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> | > | > -----------------------------------------------^^^^^
> | > | >
> | > | > That's invalid code, by the way.
> | > | >
> | > | >
> | > | > --
> | > | > Murray
> | > | > --------------
> | > | > MVP FrontPage
> | > | >
> | > | >
> | > | > "Scott" <Scott@discussions.microsoft.com> wrote in message
> | > | > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
> | > | > > Code fom browser, when displayed each row in table results in a
> | > blank
> | > line
> | > | > > above table.
> | > | > >
> | > | > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> | > | > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> | > | > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> | > | > >
> | > | > >
> | > | >
> | > | >
> | > | >
> | >
> | >
> |
> |
>
>



Re: HTML unused vertical space around table by John

John
Fri Mar 31 07:48:28 CST 2006

I know what you are saying, I just stated it very poorly.

Like
<table><br><tr><td>
(like they had)

John Malone
=========
"Murray" <forums@HAHAgreat-web-sights.com> wrote in message
news:%23rLVzyLVGHA.424@TK2MSFTNGP12.phx.gbl...
|> But we all know that <br> tags are not to be used in a table.
|
| There is no such proscription. For example - <table><tr><td><p>Here is
text
| and <br>this is preceded by a line break</p></td></tr></table> - would be
| perfectly valid.
|
| Any content or presentational markup that occurs in a table, but OUTSIDE
of
| <td></td> is invalid, however.
|
| > I value your opinion even when you shoot from the hip... 8)
|
| Thanks!
|
| --
| Murray
| --------------
| MVP FrontPage
|
|
| "John Malone" <malonejo@sbglobal.org> wrote in message
| news:uZ1qK0GVGHA.5148@TK2MSFTNGP12.phx.gbl...
| > Looks like it!
| >
| > But we all know that <br> tags are not to be used in a table.
| >
| > I tried to answer this without looking at your post just to see if I
could
| > come up with the same (or close) answer that you did. 8)
| > Never hurts to learn some HTML - CSS
| >
| > I value your opinion even when you shoot from the hip... 8)
| >
| > John Malone
| > ===================
| > "Murray" <forums@HAHAgreat-web-sights.com> wrote in message
| > news:ubnjQYGVGHA.5808@TK2MSFTNGP12.phx.gbl...
| > | The whole set of code posted had been hit with a ball peen hammer....
| > |
| > | --
| > | Murray
| > | --------------
| > | MVP FrontPage
| > |
| > |
| > | "John Malone" <malonejo@sbglobal.org> wrote in message
| > | news:uhGzk1FVGHA.4792@TK2MSFTNGP14.phx.gbl...
| > | > Try removing the <br> tags and that should do it...
| > | > Like...
| > | >
| > | > <table border="1"><TR><TD>Shari Silberglitt</TD>
| > | > <TD>4827</TD></TR><TR><TD>Shari Silberglitt</TD>
| > | > <TD>4827</TD></TR></TABLE>
| > | >
| > | > Note: Table lacks "summery" Attribute
| > | >
| > | > That has no space above the table..
| > | >
| > | > In you sample you also had
| > | >
| > | > <BR>TEST</FONT></TD></TR></TABLE>
| > | >
| > | > The closing tags are from?
| > | >
| > | > John Malone
| > | > =====================
| > | > "Scott" <Scott@discussions.microsoft.com> wrote in message
| > | > news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
| > | > | What is making this difficult is that it seesm to work fine in
front
| > | > page,
| > | > | but I am uploading the code to a "custom page" of a web site.
| > Everything
| > | > | seems to work except for tables - they get empty spaces before and
| > | > after.
| > | > Is
| > | > | there an html code for "backspace" or "delete lines" to see if
taht
| > | > would
| > | > | bring it back up to it's corect position?
| > | > |
| > | > | "Murray" wrote:
| > | > |
| > | > | > Well, sure -
| > | > | >
| > | > | > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > | > | > ---------------------------^^^^^
| > | > | > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > | > | > ---------------------------------^^^^
| > | > | > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > | > | > -----------------------------------------------^^^^^
| > | > | >
| > | > | > That's invalid code, by the way.
| > | > | >
| > | > | >
| > | > | > --
| > | > | > Murray
| > | > | > --------------
| > | > | > MVP FrontPage
| > | > | >
| > | > | >
| > | > | > "Scott" <Scott@discussions.microsoft.com> wrote in message
| > | > | > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
| > | > | > > Code fom browser, when displayed each row in table results in
a
| > | > blank
| > | > line
| > | > | > > above table.
| > | > | > >
| > | > | > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
| > | > | > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
| > | > | > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
| > | > | > >
| > | > | > >
| > | > | >
| > | > | >
| > | > | >
| > | >
| > | >
| > |
| > |
| >
| >
|
|



Re: HTML unused vertical space around table by Murray

Murray
Fri Mar 31 08:11:39 CST 2006

Definitely like that, yes.

--
Murray
--------------
MVP FrontPage


"John Malone" <malonejo@sbglobal.org> wrote in message
news:%23kBqInMVGHA.5652@TK2MSFTNGP09.phx.gbl...
>I know what you are saying, I just stated it very poorly.
>
> Like
> <table><br><tr><td>
> (like they had)
>
> John Malone
> =========
> "Murray" <forums@HAHAgreat-web-sights.com> wrote in message
> news:%23rLVzyLVGHA.424@TK2MSFTNGP12.phx.gbl...
> |> But we all know that <br> tags are not to be used in a table.
> |
> | There is no such proscription. For example - <table><tr><td><p>Here is
> text
> | and <br>this is preceded by a line break</p></td></tr></table> - would
> be
> | perfectly valid.
> |
> | Any content or presentational markup that occurs in a table, but OUTSIDE
> of
> | <td></td> is invalid, however.
> |
> | > I value your opinion even when you shoot from the hip... 8)
> |
> | Thanks!
> |
> | --
> | Murray
> | --------------
> | MVP FrontPage
> |
> |
> | "John Malone" <malonejo@sbglobal.org> wrote in message
> | news:uZ1qK0GVGHA.5148@TK2MSFTNGP12.phx.gbl...
> | > Looks like it!
> | >
> | > But we all know that <br> tags are not to be used in a table.
> | >
> | > I tried to answer this without looking at your post just to see if I
> could
> | > come up with the same (or close) answer that you did. 8)
> | > Never hurts to learn some HTML - CSS
> | >
> | > I value your opinion even when you shoot from the hip... 8)
> | >
> | > John Malone
> | > ===================
> | > "Murray" <forums@HAHAgreat-web-sights.com> wrote in message
> | > news:ubnjQYGVGHA.5808@TK2MSFTNGP12.phx.gbl...
> | > | The whole set of code posted had been hit with a ball peen
> hammer....
> | > |
> | > | --
> | > | Murray
> | > | --------------
> | > | MVP FrontPage
> | > |
> | > |
> | > | "John Malone" <malonejo@sbglobal.org> wrote in message
> | > | news:uhGzk1FVGHA.4792@TK2MSFTNGP14.phx.gbl...
> | > | > Try removing the <br> tags and that should do it...
> | > | > Like...
> | > | >
> | > | > <table border="1"><TR><TD>Shari Silberglitt</TD>
> | > | > <TD>4827</TD></TR><TR><TD>Shari Silberglitt</TD>
> | > | > <TD>4827</TD></TR></TABLE>
> | > | >
> | > | > Note: Table lacks "summery" Attribute
> | > | >
> | > | > That has no space above the table..
> | > | >
> | > | > In you sample you also had
> | > | >
> | > | > <BR>TEST</FONT></TD></TR></TABLE>
> | > | >
> | > | > The closing tags are from?
> | > | >
> | > | > John Malone
> | > | > =====================
> | > | > "Scott" <Scott@discussions.microsoft.com> wrote in message
> | > | > news:F7D50B87-4C5B-405E-BED4-5617DF030210@microsoft.com...
> | > | > | What is making this difficult is that it seesm to work fine in
> front
> | > | > page,
> | > | > | but I am uploading the code to a "custom page" of a web site.
> | > Everything
> | > | > | seems to work except for tables - they get empty spaces before
> and
> | > | > after.
> | > | > Is
> | > | > | there an html code for "backspace" or "delete lines" to see if
> taht
> | > | > would
> | > | > | bring it back up to it's corect position?
> | > | > |
> | > | > | "Murray" wrote:
> | > | > |
> | > | > | > Well, sure -
> | > | > | >
> | > | > | > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> | > | > | > ---------------------------^^^^^
> | > | > | > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> | > | > | > ---------------------------------^^^^
> | > | > | > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> | > | > | > -----------------------------------------------^^^^^
> | > | > | >
> | > | > | > That's invalid code, by the way.
> | > | > | >
> | > | > | >
> | > | > | > --
> | > | > | > Murray
> | > | > | > --------------
> | > | > | > MVP FrontPage
> | > | > | >
> | > | > | >
> | > | > | > "Scott" <Scott@discussions.microsoft.com> wrote in message
> | > | > | > news:DDA53D2E-698C-4197-8554-53041B634138@microsoft.com...
> | > | > | > > Code fom browser, when displayed each row in table results
> in
> a
> | > | > blank
> | > | > line
> | > | > | > > above table.
> | > | > | > >
> | > | > | > > <table border="1"><BR><TR><TD>Shari Silberglitt</TD>
> | > | > | > > <TD>4827</TD></TR><BR><TR><TD>Shari Silberglitt</TD>
> | > | > | > > <TD>4827</TD></TR></TABLE><BR>TEST</FONT></TD></TR></TABLE>
> | > | > | > >
> | > | > | > >
> | > | > | >
> | > | > | >
> | > | > | >
> | > | >
> | > | >
> | > |
> | > |
> | >
> | >
> |
> |
>
>



Re: HTML unused vertical space around table by Scott

Scott
Sun Apr 02 21:09:02 CDT 2006

Fixed it. I was using a custom web page form on a web site. For instance
you could just type a plain sentence and it would be posted on a "custom"
page with no code need whatsoever. To bold something you'd include <b> and
</b>. However, it allows tables if you enter all the code as a text file.
I use FP for my own site and had no problem, but for this site you had to
cust and paste the html code, and it would post it to the site. For some
reason it added a bunch of breaks. Thanks to your help, I went thorugh it
after I uploaded it, and deleted them all, and it works great now.

Re: HTML unused vertical space around table by John

John
Mon Apr 03 15:04:29 CDT 2006

Glad to hear you got it.

John Malone
"Scott" <Scott@discussions.microsoft.com> wrote in message
news:AC08E529-E116-4A96-B902-C96DF2CEF4CB@microsoft.com...
| Fixed it. I was using a custom web page form on a web site. For instance
| you could just type a plain sentence and it would be posted on a "custom"
| page with no code need whatsoever. To bold something you'd include <b>
and
| </b>. However, it allows tables if you enter all the code as a text file.
| I use FP for my own site and had no problem, but for this site you had to
| cust and paste the html code, and it would post it to the site. For some
| reason it added a bunch of breaks. Thanks to your help, I went thorugh it
| after I uploaded it, and deleted them all, and it works great now.