Resizing

J

Josh Sawyer

I am using a FP template to make a simple page. Is there any way to set the
"top border" page in the template to resize itself if some one has a display
800x600. I don't want the horozontal bars at the bottom of the page. I
understand how to do it with tables but when it puts its image up for the
template it seems to ingnore the width. I think that it may have something
to do with this code:

<body style="background-attachment: fixed">
<table border="0" cellspacing="0" cellpadding="0" width="396" height="115">
<!-- MSTableType="layout" -->
<tr>
<td align="left" valign="top" width="148">
<!--webbot bot="Navigation" s-type="banner" s-rendering="graphics"
s-orientation b-include-home b-include-up -->
</td>
<td width="122" valign="top">
&nbsp;</td>
<td height="115" width="126">&nbsp;</td>
</tr>
</table>
 
R

Ronx

The table described has a minimum width of 396px, which will not be a
problem in any browser window wider than 450px.
But, how big is the graphic? The usual size for a FrontPage theme based
banner is 600px wide. The cell the graphic is placed in will always expand
to accommodate it, the other cells may retain their minimum sizes, making
your table stretch to 870px wide - forcing a horizontal scroll bar in an
800x600 window. The outer cells must be reduced in width, to 80px each at
most.

To make the table fit in an 800x600 browser window, the table (with all its
content) must be kept below 760px wide.
 

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