Front Page 2003

B

Bob

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.
 
L

Luke Nyswonger [MSFT]

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.**
 
M

Murray

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 said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top