Centering tables in Front Page

V

vsaun

I'm having problems centering tables in FrontPage 2002.
I want to create a table within another table to have text centered on the
webpage.
I created the nested table having 1 row and 1 column. The alignment is
"center".
The nested table shows being off-centered within the table. The space on
the left and right of the nested table are not even - there is more space on
the right side.
What am I doing wrong?
There is separate table on the left side of the page which lists the
navigation links. I figure this should not affect the nested table, since it
is being centered according to only the width measurements of the table that
it is in - right?
 
M

Mike from Moriches

Without thinking a whole lot about it, I'm figuring the nested or secondary
table is nested inside a cell in the primary table. Is the cell property of
the primary table set to "Center?"
Mike from Moriches
 
T

Thomas A. Rowe

Yes,

<table border="0" cellspacing="0" width="100%" cellpadding="4">
<tr>
<td width="25%" valign="top" align="left">
<table border="0" cellpadding="0" cellspacing="0" width="99%">
<tr>
<td width="100%">Navigation</td>
</tr>
</table>
</td>
<td width="75%" valign="top" align="right">
<table border="0" cellpadding="0" cellspacing="0" width="99%">
<tr>
<td width="100%" valign="middle" align="center" height="100">Content Page</td>
</tr>
</table>
</td>
</tr>
</table>

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
 

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