1. How do I get a graphic to appear horizontally centered
for every viewer of my web page?

2. When I set up my table and cells and go to add content
(text, graphics, buttons), the cells seem to disappear
sometimes at random times.

Please help.

RE: Front Page 2003 by LukeN

LukeN
Fri Aug 13 10:28:16 CDT 2004

>1. How do I get a graphic to appear horizontally centered
>for every viewer of my web page?
>
>2. When I set up my table and cells and go to add content
>(text, graphics, buttons), the cells seem to disappear
>sometimes at random times.
>
>Please help.
>
Hi Bob,

1. One way would be to define a height on the table, like this:

<body>
<table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0" id="table1">
<tr>
<td>
<p align="center"><img border="0" src="image.jpg" width="100" height="100">
</td>
</tr>
</table>
</body>

2. I've never seen that, can you elaborate?

Regards,
luke

Luke Nyswonger [MSFT]
Lead Programmer Writer
Windows Server System UX

**This posting is provided "AS IS" with no warranties, and confers no rights. You assume all risk for your use. © 2004
Microsoft Corporation. All rights reserved.**


Re: Front Page 2003 by Murray

Murray
Fri Aug 13 10:46:53 CDT 2004

> 1. One way would be to define a height on the table, like this:

Be aware that this will fail on any page with a valid doctype, since table
height is invalid HTML.

If you are working on such a page, you can do it this way -

http://apptools.com/examples/tableheight.php

--
Murray

"Luke Nyswonger [MSFT]" <LukeN@online.microsoft.com> wrote in message
news:c0uvdoUgEHA.2640@cpmsftngxa06.phx.gbl...
> >1. How do I get a graphic to appear horizontally centered
> >for every viewer of my web page?
> >
> >2. When I set up my table and cells and go to add content
> >(text, graphics, buttons), the cells seem to disappear
> >sometimes at random times.
> >
> >Please help.
> >
> Hi Bob,
>
> 1. One way would be to define a height on the table, like this:
>
> <body>
> <table border="0" width="100%" height="100%" cellspacing="0"
cellpadding="0" id="table1">
> <tr>
> <td>
> <p align="center"><img border="0" src="image.jpg" width="100"
height="100">
> </td>
> </tr>
> </table>
> </body>
>
> 2. I've never seen that, can you elaborate?
>
> Regards,
> luke
>
> Luke Nyswonger [MSFT]
> Lead Programmer Writer
> Windows Server System UX
>
> **This posting is provided "AS IS" with no warranties, and confers no
rights. You assume all risk for your use. © 2004
> Microsoft Corporation. All rights reserved.**
>