PC Review


Reply
Thread Tools Rate Thread

Browser page conflicts

 
 
Bill Schroyer
Guest
Posts: n/a
 
      26th May 2004
Set your main table to 750 pixels then center it. On your
next nested table you should allow 1 cell to be a
percentage, preferably without a fixed object (pictures)
so if a user doesn't have the browser fully expanded the
percentage cell will adjust. A simple sample below, copy
and paste into a page using html or code view, replace all
the code on the page.

<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<title>Sample Page Layout - Tables -750 pixels</title>
<!--Sample Page Layout - Tables -750 pixels,
www.frontpagewiz.com>
</head>

<body>

<div align="center">
<table border="0" cellpadding="0" cellspacing="0"
width="750" id="table3">
<tr>
<td>
<p align="center"><br>
Header<br>
&nbsp;</td>
</tr>
</table>
<p>&nbsp;</p>
<table border="0" cellpadding="4" cellspacing="0"
width="750" id="table1">
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0"
width="100%" id="table2">
<tr>
<td width="140" valign="top">&nbsp;<p>&nbsp;</td>
<td width="400" valign="top">&nbsp;<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</td>
<td valign="top">&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
&nbsp;<p>&nbsp;</p>
<table border="0" cellpadding="0" cellspacing="0"
width="750" id="table4">
<tr>
<td>
<p align="center"><br>
Footer<br>
&nbsp;</td>
</tr>
</table>
</div>

</body>

</html>

Bill Schroyer
(E-Mail Removed)
http://www.frontpagewiz.com

>-----Original Message-----
>This question is pertaining to the web page displaying

the same for different resolutions.
>
>I am using Frontpage 2000. My users (or viewers) will

probably have various knowledge of the computer and
therefore be viewing my site at various screen resolutions
(800 X 600 and 1024 X 768).My problem is how do I design a
site that will appear exactly the same for both these
widths (allowing no word wrap for sentences, right aligned
sentences do not wrap onto the next line if a smaller
resolution is being used, etc). I thought that before I
start a page I would create one large table and then all
the contents would be within that table. Then I could
create other tables to position pictures, etc. But the
large table would control the size of the page
displayed.Does this plan of action sound like a solution
to the problem? If so, would you suggest I use the
relative width set to 100% or the absolute width set to
pixels (If so, what pixel width would be best for an 800 X
600 resolution (710 pixels?)). I think this site should be
designed based on this resolution.
>
>Thank you so much for your help. I appreciate all the

input I get.
>
>Kevin
>.
>

 
Reply With Quote
 
 
 
 
Stefan B Rusynko
Guest
Posts: n/a
 
      26th May 2004
FYI
This part of your code is wrong - you open a comment w/o closing it

<title>Sample Page Layout - Tables -750 pixels</title>
<!--Sample Page Layout - Tables -750 pixels, www.frontpagewiz.com>
</head>

If you are doing to include it, it should be

<title>Sample Page Layout - Tables -750 pixels</title>
<!--Sample Page Layout - Tables -750 pixels, www.frontpagewiz.com -->
</head>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Bill Schroyer" <(E-Mail Removed)> wrote in message news:1288b01c442f9$954abe50$(E-Mail Removed)...
| Set your main table to 750 pixels then center it. On your
| next nested table you should allow 1 cell to be a
| percentage, preferably without a fixed object (pictures)
| so if a user doesn't have the browser fully expanded the
| percentage cell will adjust. A simple sample below, copy
| and paste into a page using html or code view, replace all
| the code on the page.
|
| <html>
|
| <head>
| <meta http-equiv="Content-Language" content="en-us">
| <meta http-equiv="Content-Type" content="text/html;
| charset=windows-1252">
| <title>Sample Page Layout - Tables -750 pixels</title>
| <!--Sample Page Layout - Tables -750 pixels,
| www.frontpagewiz.com>
| </head>
|
| <body>
|
| <div align="center">
| <table border="0" cellpadding="0" cellspacing="0"
| width="750" id="table3">
| <tr>
| <td>
| <p align="center"><br>
| Header<br>
| &nbsp;</td>
| </tr>
| </table>
| <p>&nbsp;</p>
| <table border="0" cellpadding="4" cellspacing="0"
| width="750" id="table1">
| <tr>
| <td>
| <table border="0" cellpadding="0" cellspacing="0"
| width="100%" id="table2">
| <tr>
| <td width="140" valign="top">&nbsp;<p>&nbsp;</td>
| <td width="400" valign="top">&nbsp;<p>&nbsp;</p>
| <p>&nbsp;</p>
| <p>&nbsp;</p>
| <p>&nbsp;</p>
| <p>&nbsp;</p>
| <p>&nbsp;</p>
| <p>&nbsp;</p>
| <p>&nbsp;</td>
| <td valign="top">&nbsp;</td>
| </tr>
| </table>
| </td>
| </tr>
| </table>
| &nbsp;<p>&nbsp;</p>
| <table border="0" cellpadding="0" cellspacing="0"
| width="750" id="table4">
| <tr>
| <td>
| <p align="center"><br>
| Footer<br>
| &nbsp;</td>
| </tr>
| </table>
| </div>
|
| </body>
|
| </html>
|
| Bill Schroyer
| (E-Mail Removed)
| http://www.frontpagewiz.com
|
| >-----Original Message-----
| >This question is pertaining to the web page displaying
| the same for different resolutions.
| >
| >I am using Frontpage 2000. My users (or viewers) will
| probably have various knowledge of the computer and
| therefore be viewing my site at various screen resolutions
| (800 X 600 and 1024 X 768).My problem is how do I design a
| site that will appear exactly the same for both these
| widths (allowing no word wrap for sentences, right aligned
| sentences do not wrap onto the next line if a smaller
| resolution is being used, etc). I thought that before I
| start a page I would create one large table and then all
| the contents would be within that table. Then I could
| create other tables to position pictures, etc. But the
| large table would control the size of the page
| displayed.Does this plan of action sound like a solution
| to the problem? If so, would you suggest I use the
| relative width set to 100% or the absolute width set to
| pixels (If so, what pixel width would be best for an 800 X
| 600 resolution (710 pixels?)). I think this site should be
| designed based on this resolution.
| >
| >Thank you so much for your help. I appreciate all the
| input I get.
| >
| >Kevin
| >.
| >


 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      26th May 2004
If you have base table set to 750 pixels, then insert a nested table using %, nothing will change if
the users resize their browser window, since the 750 is fixed.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"Bill Schroyer" <(E-Mail Removed)> wrote in message
news:1288b01c442f9$954abe50$(E-Mail Removed)...
> Set your main table to 750 pixels then center it. On your
> next nested table you should allow 1 cell to be a
> percentage, preferably without a fixed object (pictures)
> so if a user doesn't have the browser fully expanded the
> percentage cell will adjust. A simple sample below, copy
> and paste into a page using html or code view, replace all
> the code on the page.
>
> <html>
>
> <head>
> <meta http-equiv="Content-Language" content="en-us">
> <meta http-equiv="Content-Type" content="text/html;
> charset=windows-1252">
> <title>Sample Page Layout - Tables -750 pixels</title>
> <!--Sample Page Layout - Tables -750 pixels,
> www.frontpagewiz.com>
> </head>
>
> <body>
>
> <div align="center">
> <table border="0" cellpadding="0" cellspacing="0"
> width="750" id="table3">
> <tr>
> <td>
> <p align="center"><br>
> Header<br>
> &nbsp;</td>
> </tr>
> </table>
> <p>&nbsp;</p>
> <table border="0" cellpadding="4" cellspacing="0"
> width="750" id="table1">
> <tr>
> <td>
> <table border="0" cellpadding="0" cellspacing="0"
> width="100%" id="table2">
> <tr>
> <td width="140" valign="top">&nbsp;<p>&nbsp;</td>
> <td width="400" valign="top">&nbsp;<p>&nbsp;</p>
> <p>&nbsp;</p>
> <p>&nbsp;</p>
> <p>&nbsp;</p>
> <p>&nbsp;</p>
> <p>&nbsp;</p>
> <p>&nbsp;</p>
> <p>&nbsp;</td>
> <td valign="top">&nbsp;</td>
> </tr>
> </table>
> </td>
> </tr>
> </table>
> &nbsp;<p>&nbsp;</p>
> <table border="0" cellpadding="0" cellspacing="0"
> width="750" id="table4">
> <tr>
> <td>
> <p align="center"><br>
> Footer<br>
> &nbsp;</td>
> </tr>
> </table>
> </div>
>
> </body>
>
> </html>
>
> Bill Schroyer
> (E-Mail Removed)
> http://www.frontpagewiz.com
>
> >-----Original Message-----
> >This question is pertaining to the web page displaying

> the same for different resolutions.
> >
> >I am using Frontpage 2000. My users (or viewers) will

> probably have various knowledge of the computer and
> therefore be viewing my site at various screen resolutions
> (800 X 600 and 1024 X 768).My problem is how do I design a
> site that will appear exactly the same for both these
> widths (allowing no word wrap for sentences, right aligned
> sentences do not wrap onto the next line if a smaller
> resolution is being used, etc). I thought that before I
> start a page I would create one large table and then all
> the contents would be within that table. Then I could
> create other tables to position pictures, etc. But the
> large table would control the size of the page
> displayed.Does this plan of action sound like a solution
> to the problem? If so, would you suggest I use the
> relative width set to 100% or the absolute width set to
> pixels (If so, what pixel width would be best for an 800 X
> 600 resolution (710 pixels?)). I think this site should be
> designed based on this resolution.
> >
> >Thank you so much for your help. I appreciate all the

> input I get.
> >
> >Kevin
> >.
> >



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Browser Conflicts w/ IE but not with FireFox: =?Utf-8?B?ZGRydWNr?= Microsoft Frontpage 1 18th Nov 2005 10:32 AM
Visual Studio Conflicts with Browser JCO Microsoft Windows 2000 Applications 0 16th Nov 2004 02:34 PM
Master browser conflicts!? Jean Windows XP Networking 5 4th Aug 2004 11:19 PM
Re: Browser page conflicts Andrew Murray Microsoft Frontpage 0 26th May 2004 12:59 PM
Browser conflicts =?Utf-8?B?U3VzaWU=?= Windows XP Internet Explorer 0 30th Apr 2004 11:21 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:26 PM.