Tables size

M

Mary Ann

Would someone please tell me what size to set the table on page:
www.mooreframes.com/vtwin.htm

I'm refering to the table in the middle with the pics.

It looks fine on my screen but to far to the left on a wide screen. I would
like it to stretch wider when someone views it on a wider screen. Thank you
 
R

Rob Giordano \(Crash\)

You have a 100% fixed width table within a div with a width of 776 px.

--
~~~~~~~~~~~~~~~~~~
Rob Giordano
Microsoft MVP Expression






| Would someone please tell me what size to set the table on page:
| www.mooreframes.com/vtwin.htm
|
| I'm refering to the table in the middle with the pics.
|
| It looks fine on my screen but to far to the left on a wide screen. I
would
| like it to stretch wider when someone views it on a wider screen. Thank
you
 
R

Ronx

Before you worry about widescreen monitors, I suggest you look at the
page in FireFox - around 20% of your potential customers use FireFox.

The absolute positioning, VML graphics, layers with incorrect height
attributes etc. are conspiring to hide some of the content.

Also, the space bar should not be used for layout - FireFox shows your
fonts slightly smaller than IE does, using the space bar for layout
means the layout will be different in FireFox.

I suggest redesigning the page to use tables only, without text-boxes
and layers. Use % to set the width of the tables.
 
M

Mary Ann

Thank you. I didn't want to use the layers but I couldn't figure out how else
to have a separate table on the left for the menu and a table in the center
for the products.
 
R

Ronx

A simple table layout:

<body>
<table width="100%">
<tr>
<td>Logo goes here</td>
<td>Page header goes here</td>
</tr>
</table>
<table width="100%">
<tr>
<td width="120" valign="top">
<table>
<tr>
<td>navigation goes here</td>
</tr>
<tr>
<td>navigation goes here</td>
</tr>
<!-- repeat above cells for more navigation -->
</table>
</td>
<td valign="top">
<table>
<tr>
<td>Page content goes here</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%">
<tr>
<td>Page footer goes here</td>
</tr>
</table>
</body>

You will need to add cellspacing, cellpadding and borders for each
table, but you should see the basic idea.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 
M

Mary Ann

Thank you so much! That helped a lot.

Ronx said:
A simple table layout:

<body>
<table width="100%">
<tr>
<td>Logo goes here</td>
<td>Page header goes here</td>
</tr>
</table>
<table width="100%">
<tr>
<td width="120" valign="top">
<table>
<tr>
<td>navigation goes here</td>
</tr>
<tr>
<td>navigation goes here</td>
</tr>
<!-- repeat above cells for more navigation -->
</table>
</td>
<td valign="top">
<table>
<tr>
<td>Page content goes here</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%">
<tr>
<td>Page footer goes here</td>
</tr>
</table>
</body>

You will need to add cellspacing, cellpadding and borders for each
table, but you should see the basic idea.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp
 
R

Richard In Va.

Nice job Ron... yeah, tables take a little to get used to at first.
I like to mentally associate the html "table" to the behavior of
rows/columns/cells that are so common in an Excel spreadsheet.

Sort-of anyway...

Richard in Va.
+++++++++++++
 
R

Richard in Va.

Hello Mary Ann & Ron,

A question if I might? Okay, maybe 2 questions...

Ron- I notice in your simple table layout above, you have (3) independent
tables. A "header" table, a "content" table and a "footer" table.

1- Is there a way to load each one separate into a web page? Meaning a site
might have (1) header table & (1) footer table used on all pages but may
want to load different content tables for the different web pages.

2- Is there a way to have the "navigation" table load into all web pages.
Maybe as a separate html document? This way when the navigation table gets
updated when a new page is added to the site, only one file needs manual
updating?

If there is more than one method to accomplish this, better give the easy
way.... I'm like Mary Ann.... trying to learn this stuff too!

Thanks Ron (or anyone else) again, nice basic table layout!

Richard in VA.
+++++++++++++++
 
T

Thomas A. Rowe

Yes, you can use the FP Include Page Component (you will have to insert it manually into each page
to begin with) or if redesigning your site with FP2003 or EW, then you can use a Dynamic Web
Template.

--
==============================================
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