Is there a code I can use to make my webpage maximize itself regardless of
the viewers set screen resolution?

Example: I designed the site with 800x600 resolution, but now I find out
that most of my visitors use 1024 x 768 resolution. I want the page to be
full screen for all visitors.

Can anyone help me with this? I would truly appreciate it.

Mark

Re: Maximizing Resolution by Thomas

Thomas
Tue Dec 20 06:52:21 CST 2005

What about what your user want? Just because a user has a resolution of 1024 x 768 or higher,
doesn't mean that they browse full screen! Also you may loose site visitors by automatically
changing their browser to full screen as many will not return to your site.

Anyway, do a search in your IE address bar:

? JavaScript Full Screen Windows
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================

"Bruise" <mkrupiarzATshaw.ca> wrote in message news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
> Is there a code I can use to make my webpage maximize itself regardless of the viewers set screen
> resolution?
>
> Example: I designed the site with 800x600 resolution, but now I find out that most of my visitors
> use 1024 x 768 resolution. I want the page to be full screen for all visitors.
>
> Can anyone help me with this? I would truly appreciate it.
>
> Mark
>
>



RE: Maximizing Resolution by NomisJM

NomisJM
Tue Dec 20 06:59:02 CST 2005

Try this as an easy solution.

Add the line below into the body tag.

onload="maximizeWin()"

then add this into the head content.

<script language = "javascript">
// Miximise the window
function maximizeWin() {
if (window.screen) {
var aw = screen.availWidth;
var ah = screen.availHeight;
window.moveTo(0, 0);
window.resizeTo(aw, ah);
}
}
</script>


"Bruise" wrote:

> Is there a code I can use to make my webpage maximize itself regardless of
> the viewers set screen resolution?
>
> Example: I designed the site with 800x600 resolution, but now I find out
> that most of my visitors use 1024 x 768 resolution. I want the page to be
> full screen for all visitors.
>
> Can anyone help me with this? I would truly appreciate it.
>
> Mark
>
>
>

Re: Maximizing Resolution by Murray

Murray
Tue Dec 20 07:28:27 CST 2005

Mac users (along with me and many others) will hate you for this.

I don't want you to mess with my browser. You change it when I come to your
site, and you don't change it back when I leave. Besides, wouldn't it be
more professionaly to make the site adapt to the visitor than to force the
visitor to adapt to the site?

--
Murray
============

"NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
news:46A04363-CB08-47C7-8A79-5402101BC55A@microsoft.com...
> Try this as an easy solution.
>
> Add the line below into the body tag.
>
> onload="maximizeWin()"
>
> then add this into the head content.
>
> <script language = "javascript">
> // Miximise the window
> function maximizeWin() {
> if (window.screen) {
> var aw = screen.availWidth;
> var ah = screen.availHeight;
> window.moveTo(0, 0);
> window.resizeTo(aw, ah);
> }
> }
> </script>
>
>
> "Bruise" wrote:
>
>> Is there a code I can use to make my webpage maximize itself regardless
>> of
>> the viewers set screen resolution?
>>
>> Example: I designed the site with 800x600 resolution, but now I find out
>> that most of my visitors use 1024 x 768 resolution. I want the page to
>> be
>> full screen for all visitors.
>>
>> Can anyone help me with this? I would truly appreciate it.
>>
>> Mark
>>
>>
>>



Re: Maximizing Resolution by NomisJM

NomisJM
Tue Dec 20 08:03:03 CST 2005

That script will maximise the browser window to the users current size not
change it from the users current settings.

What MAC users think has no bearing on my answer or his question. And I
think Bruise asked how to do it, not your opinion on what MAC users want and
think. You as with many other people on here spend there time picking holes
in the way people work as apposed to answering there questions; its supposed
to be a help forum not a area for people to pick holes in your work.
Now had he asked how to make his site more professional so it adapts to the
users setting be them MAC or MS users, then your comment would be nearly
useful, had you actually suggested an solution as well it would have been
very useful



"Murray" wrote:

> Mac users (along with me and many others) will hate you for this.
>
> I don't want you to mess with my browser. You change it when I come to your
> site, and you don't change it back when I leave. Besides, wouldn't it be
> more professionaly to make the site adapt to the visitor than to force the
> visitor to adapt to the site?
>
> --
> Murray
> ============
>
> "NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
> news:46A04363-CB08-47C7-8A79-5402101BC55A@microsoft.com...
> > Try this as an easy solution.
> >
> > Add the line below into the body tag.
> >
> > onload="maximizeWin()"
> >
> > then add this into the head content.
> >
> > <script language = "javascript">
> > // Miximise the window
> > function maximizeWin() {
> > if (window.screen) {
> > var aw = screen.availWidth;
> > var ah = screen.availHeight;
> > window.moveTo(0, 0);
> > window.resizeTo(aw, ah);
> > }
> > }
> > </script>
> >
> >
> > "Bruise" wrote:
> >
> >> Is there a code I can use to make my webpage maximize itself regardless
> >> of
> >> the viewers set screen resolution?
> >>
> >> Example: I designed the site with 800x600 resolution, but now I find out
> >> that most of my visitors use 1024 x 768 resolution. I want the page to
> >> be
> >> full screen for all visitors.
> >>
> >> Can anyone help me with this? I would truly appreciate it.
> >>
> >> Mark
> >>
> >>
> >>
>
>
>

Re: Maximizing Resolution by Murray

Murray
Tue Dec 20 08:22:18 CST 2005

> That script will maximise the browser window to the users current size not
> change it from the users current settings.

Let's take an example. My screen is 1280x1024. My browser viewport is
rarely wider than 740px. What size will it be when I visit this site? What
size will it be when I immediately leave the site, never to return?

It is help when people raise issues you had not considered. Obviously this
is one you had not considered.

--
Murray
============

"NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
news:2F4472CE-3D72-4D01-BB80-2E1169FAF459@microsoft.com...
> That script will maximise the browser window to the users current size not
> change it from the users current settings.
>
> What MAC users think has no bearing on my answer or his question. And I
> think Bruise asked how to do it, not your opinion on what MAC users want
> and
> think. You as with many other people on here spend there time picking
> holes
> in the way people work as apposed to answering there questions; its
> supposed
> to be a help forum not a area for people to pick holes in your work.
> Now had he asked how to make his site more professional so it adapts to
> the
> users setting be them MAC or MS users, then your comment would be nearly
> useful, had you actually suggested an solution as well it would have been
> very useful
>
>
>
> "Murray" wrote:
>
>> Mac users (along with me and many others) will hate you for this.
>>
>> I don't want you to mess with my browser. You change it when I come to
>> your
>> site, and you don't change it back when I leave. Besides, wouldn't it be
>> more professionaly to make the site adapt to the visitor than to force
>> the
>> visitor to adapt to the site?
>>
>> --
>> Murray
>> ============
>>
>> "NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
>> news:46A04363-CB08-47C7-8A79-5402101BC55A@microsoft.com...
>> > Try this as an easy solution.
>> >
>> > Add the line below into the body tag.
>> >
>> > onload="maximizeWin()"
>> >
>> > then add this into the head content.
>> >
>> > <script language = "javascript">
>> > // Miximise the window
>> > function maximizeWin() {
>> > if (window.screen) {
>> > var aw = screen.availWidth;
>> > var ah = screen.availHeight;
>> > window.moveTo(0, 0);
>> > window.resizeTo(aw, ah);
>> > }
>> > }
>> > </script>
>> >
>> >
>> > "Bruise" wrote:
>> >
>> >> Is there a code I can use to make my webpage maximize itself
>> >> regardless
>> >> of
>> >> the viewers set screen resolution?
>> >>
>> >> Example: I designed the site with 800x600 resolution, but now I find
>> >> out
>> >> that most of my visitors use 1024 x 768 resolution. I want the page
>> >> to
>> >> be
>> >> full screen for all visitors.
>> >>
>> >> Can anyone help me with this? I would truly appreciate it.
>> >>
>> >> Mark
>> >>
>> >>
>> >>
>>
>>
>>



Re: Maximizing Resolution by NomisJM

NomisJM
Tue Dec 20 08:43:05 CST 2005

Hey look, he never asked what size window you browse at, all he wanted was to
know how to do it, another example then.

I work for a company where I have a number of consultants/brokers/staff that
use my site as a form of intranet if you like, they use home pc's with number
screen resolutions. I want all of my users to see it full screen, not in
smaller window because they are viewing things they dont want people to see.
This site is not intended for the general public to see, and so your viewing
preference makes no difference to me.

I ask the question and get your answer, what help is that to me?

You can't assume everyone on here is building sites for your use, I
appreciate that most may well be public use sites but not all. And you are
probably the minority.

Lastly as you are the minority, you can always reduce your window size when
you open the site if you dont like it..

"Murray" wrote:

> > That script will maximise the browser window to the users current size not
> > change it from the users current settings.
>
> Let's take an example. My screen is 1280x1024. My browser viewport is
> rarely wider than 740px. What size will it be when I visit this site? What
> size will it be when I immediately leave the site, never to return?
>
> It is help when people raise issues you had not considered. Obviously this
> is one you had not considered.
>
> --
> Murray
> ============
>
> "NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
> news:2F4472CE-3D72-4D01-BB80-2E1169FAF459@microsoft.com...
> > That script will maximise the browser window to the users current size not
> > change it from the users current settings.
> >
> > What MAC users think has no bearing on my answer or his question. And I
> > think Bruise asked how to do it, not your opinion on what MAC users want
> > and
> > think. You as with many other people on here spend there time picking
> > holes
> > in the way people work as apposed to answering there questions; its
> > supposed
> > to be a help forum not a area for people to pick holes in your work.
> > Now had he asked how to make his site more professional so it adapts to
> > the
> > users setting be them MAC or MS users, then your comment would be nearly
> > useful, had you actually suggested an solution as well it would have been
> > very useful
> >
> >
> >
> > "Murray" wrote:
> >
> >> Mac users (along with me and many others) will hate you for this.
> >>
> >> I don't want you to mess with my browser. You change it when I come to
> >> your
> >> site, and you don't change it back when I leave. Besides, wouldn't it be
> >> more professionaly to make the site adapt to the visitor than to force
> >> the
> >> visitor to adapt to the site?
> >>
> >> --
> >> Murray
> >> ============
> >>
> >> "NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
> >> news:46A04363-CB08-47C7-8A79-5402101BC55A@microsoft.com...
> >> > Try this as an easy solution.
> >> >
> >> > Add the line below into the body tag.
> >> >
> >> > onload="maximizeWin()"
> >> >
> >> > then add this into the head content.
> >> >
> >> > <script language = "javascript">
> >> > // Miximise the window
> >> > function maximizeWin() {
> >> > if (window.screen) {
> >> > var aw = screen.availWidth;
> >> > var ah = screen.availHeight;
> >> > window.moveTo(0, 0);
> >> > window.resizeTo(aw, ah);
> >> > }
> >> > }
> >> > </script>
> >> >
> >> >
> >> > "Bruise" wrote:
> >> >
> >> >> Is there a code I can use to make my webpage maximize itself
> >> >> regardless
> >> >> of
> >> >> the viewers set screen resolution?
> >> >>
> >> >> Example: I designed the site with 800x600 resolution, but now I find
> >> >> out
> >> >> that most of my visitors use 1024 x 768 resolution. I want the page
> >> >> to
> >> >> be
> >> >> full screen for all visitors.
> >> >>
> >> >> Can anyone help me with this? I would truly appreciate it.
> >> >>
> >> >> Mark
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>
>
>
>

Re: Maximizing Resolution by Murray

Murray
Tue Dec 20 09:16:54 CST 2005

> Lastly as you are the minority, you can always reduce your window size
> when
> you open the site if you dont like it..

LOL - nice.

--
Murray
============



Re: Maximizing Resolution by NomisJM

NomisJM
Tue Dec 20 09:47:03 CST 2005

Cheeky little touch.

Anyhow enough of the bickering, I'm on here for solutions and to help where
I can. I just feel that often most people asking these questions are amateur
developers or hobby site builders and would just like a solution, I know when
I ask things it's not a matter of making my site the most popular or best on
the web, but often because I'm interested to find out, or I'm trying some new
stuff. And lots of people answer with criticism or objections but no
recommendations or solutions.

"Murray" wrote:

> > Lastly as you are the minority, you can always reduce your window size
> > when
> > you open the site if you dont like it..
>
> LOL - nice.
>
> --
> Murray
> ============
>
>
>

Re: Maximizing Resolution by Murray

Murray
Tue Dec 20 10:02:50 CST 2005

The point is that there is *no* real solution. Many modern browsers now
prevent such amateurish behavior. You can't resize them programatically
even if you wanted to. So - why waste the effort which might be better
spent on your site's content?

--
Murray
============

"NomisJM" <NomisJM@discussions.microsoft.com> wrote in message
news:1E06A966-3E3D-484A-A4F3-DEE13B60ED3D@microsoft.com...
> Cheeky little touch.
>
> Anyhow enough of the bickering, I'm on here for solutions and to help
> where
> I can. I just feel that often most people asking these questions are
> amateur
> developers or hobby site builders and would just like a solution, I know
> when
> I ask things it's not a matter of making my site the most popular or best
> on
> the web, but often because I'm interested to find out, or I'm trying some
> new
> stuff. And lots of people answer with criticism or objections but no
> recommendations or solutions.
>
> "Murray" wrote:
>
>> > Lastly as you are the minority, you can always reduce your window size
>> > when
>> > you open the site if you dont like it..
>>
>> LOL - nice.
>>
>> --
>> Murray
>> ============
>>
>>
>>



Re: Maximizing Resolution by Bruise

Bruise
Tue Dec 20 10:48:41 CST 2005

This is a multi-part message in MIME format.

------=_NextPart_000_0025_01C6055B.52FCCD60
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Wow! If I had known my first inquiry on this NG would produce this kind =
of 'fiery' debate..... =20

I appreciate input from you all and I thank you. I do think, however, =
that I didn't word my question quite right. I do not want to change the =
viewers resolution on thier browser. I must want my site to fill the =
width of their viewing area that they are already at. There are some =
sites where, if my resolution were set at 800x600 or 1024x768, it would =
look exactly the same and leave no space on the right side of the =
designed area. If I designed my site in 1024x768 instead of 800x600, it =
would look right on someone's screen set to 1024x768, but be too big for =
someone with 800x600.

That's all I want. I do not want to change their screen resolution each =
time they visit my site...I just want my site to fill their =
predetermined viewing area regardless of what that predetermined viewing =
area is.

Does that make more sense? If it's going to cause another argument, =
I'll drop the issue.... ;)

Mark


"Bruise" <mkrupiarzATshaw.ca> wrote in message =
news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
> Is there a code I can use to make my webpage maximize itself =
regardless of=20
> the viewers set screen resolution?
>=20
> Example: I designed the site with 800x600 resolution, but now I find =
out=20
> that most of my visitors use 1024 x 768 resolution. I want the page =
to be=20
> full screen for all visitors.
>=20
> Can anyone help me with this? I would truly appreciate it.
>=20
> Mark
>=20
>
------=_NextPart_000_0025_01C6055B.52FCCD60
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2722" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2>Wow!&nbsp; If I had known my first =
inquiry on=20
this&nbsp;NG would produce this kind of 'fiery' debate.....&nbsp;&nbsp;=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>I appreciate input from you all and I =
thank=20
you.&nbsp; I do think, however, that I didn't word my question quite=20
right.&nbsp; I <STRONG>do not</STRONG> want to change the viewers =
resolution on=20
thier browser.&nbsp; I must want my site to fill the width of their =
viewing area=20
that they are already at.&nbsp; There are some sites where, if my =
resolution=20
were set at 800x600 or 1024x768, it would look exactly the same and =
leave no=20
space on the right side of the designed area.&nbsp; If I designed my =
site in=20
1024x768 instead of 800x600, it would look right on someone's screen set =
to=20
1024x768, but be too big for someone with 800x600.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>That's all I want.&nbsp; I do not want =
to change=20
their screen resolution each time they visit my site...I just want my =
site to=20
fill their predetermined viewing area regardless of what that =
predetermined=20
viewing area is.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Does that make more sense?&nbsp; If =
it's going to=20
cause another argument, I'll drop the issue....&nbsp; ;)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Mark</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>"Bruise" &lt;mkrupiarzATshaw.ca&gt; =
wrote in=20
message </FONT><A =
href=3D"news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl"><FONT=20
face=3DArial =
size=3D2>news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl</FONT></A><FONT=20
face=3DArial size=3D2>...</FONT></DIV><FONT face=3DArial size=3D2>&gt; =
Is there a code I=20
can use to make my webpage maximize itself regardless of <BR>&gt; the =
viewers=20
set screen resolution?<BR>&gt; <BR>&gt; Example:&nbsp; I designed the =
site with=20
800x600 resolution, but now I find out <BR>&gt; that most of my visitors =
use=20
1024 x 768 resolution.&nbsp; I want the page to be <BR>&gt; full screen =
for all=20
visitors.<BR>&gt; <BR>&gt; Can anyone help me with this?&nbsp; I would =
truly=20
appreciate it.<BR>&gt; <BR>&gt; Mark<BR>&gt; =
<BR>&gt;</FONT></BODY></HTML>

------=_NextPart_000_0025_01C6055B.52FCCD60--


Re: Maximizing Resolution by Mike

Mike
Tue Dec 20 11:13:09 CST 2005

:: Mark asked:
:: Is there a code I can use to make my webpage maximize
itself
:: regardless of the viewers set screen resolution?
::
:: Example: I designed the site with 800x600 resolution,
but now
:: I find out that most of my visitors use 1024 x 768
resolution. I
:: want the page to be full screen for all visitors.

"Murray" wrote:
: The point is that there is *no* real solution. Many
modern browsers now
: prevent such amateurish behavior. You can't resize them
programatically
: even if you wanted to. So - why waste the effort which
might be better
: spent on your site's content?

Exactly.
And besides the browser blocking it, the code will not
change the
screen resolution.

The best solution for the poster is to design his page to be
flexible



Re: Maximizing Resolution by Bruise

Bruise
Tue Dec 20 11:25:22 CST 2005

Exactly. What I am looking for, I guess, is help on making it flexible from
the beginning....


"Mike Mueller" <MyName@ecinet.net.net> wrote in message
news:eoeBliYBGHA.412@TK2MSFTNGP15.phx.gbl...
> :: Mark asked:
> :: Is there a code I can use to make my webpage maximize
> itself
> :: regardless of the viewers set screen resolution?
> ::
> :: Example: I designed the site with 800x600 resolution,
> but now
> :: I find out that most of my visitors use 1024 x 768
> resolution. I
> :: want the page to be full screen for all visitors.
>
> "Murray" wrote:
> : The point is that there is *no* real solution. Many
> modern browsers now
> : prevent such amateurish behavior. You can't resize them
> programatically
> : even if you wanted to. So - why waste the effort which
> might be better
> : spent on your site's content?
>
> Exactly.
> And besides the browser blocking it, the code will not
> change the
> screen resolution.
>
> The best solution for the poster is to design his page to be
> flexible
>
>



Re: Maximizing Resolution by Murray

Murray
Tue Dec 20 11:53:21 CST 2005

Read this excellent tutorial - although it's Dreamweaver oriented, the
concepts are perfectly valid -

http://www.dwfaq.com/tutorials/Tables/flexible_tables.asp

--
Murray
============

"Bruise" <mkrupiarzATshaw.ca> wrote in message
news:OLEsZpYBGHA.628@TK2MSFTNGP14.phx.gbl...
> Exactly. What I am looking for, I guess, is help on making it flexible
> from the beginning....
>
>
> "Mike Mueller" <MyName@ecinet.net.net> wrote in message
> news:eoeBliYBGHA.412@TK2MSFTNGP15.phx.gbl...
>> :: Mark asked:
>> :: Is there a code I can use to make my webpage maximize
>> itself
>> :: regardless of the viewers set screen resolution?
>> ::
>> :: Example: I designed the site with 800x600 resolution,
>> but now
>> :: I find out that most of my visitors use 1024 x 768
>> resolution. I
>> :: want the page to be full screen for all visitors.
>>
>> "Murray" wrote:
>> : The point is that there is *no* real solution. Many
>> modern browsers now
>> : prevent such amateurish behavior. You can't resize them
>> programatically
>> : even if you wanted to. So - why waste the effort which
>> might be better
>> : spent on your site's content?
>>
>> Exactly.
>> And besides the browser blocking it, the code will not
>> change the
>> screen resolution.
>>
>> The best solution for the poster is to design his page to be
>> flexible
>>
>>
>
>



Re: Maximizing Resolution by Steve

Steve
Tue Dec 20 13:19:41 CST 2005

If it's going to cause another argument, I'll drop the issue.... ;)

Heavens no, don't drop it. This thread has been this mornings entertainment.

As for your question, Murray's last post answers it.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
..............................with a computer

"Bruise" <mkrupiarzATshaw.ca> wrote in message news:uD1C6UYBGHA.3156@TK2MSFTNGP12.phx.gbl...
Wow! If I had known my first inquiry on this NG would produce this kind of 'fiery'
debate.....

I appreciate input from you all and I thank you. I do think, however, that I didn't word my
question quite right. I do not want to change the viewers resolution on thier browser. I
must want my site to fill the width of their viewing area that they are already at. There
are some sites where, if my resolution were set at 800x600 or 1024x768, it would look
exactly the same and leave no space on the right side of the designed area. If I designed
my site in 1024x768 instead of 800x600, it would look right on someone's screen set to
1024x768, but be too big for someone with 800x600.

That's all I want. I do not want to change their screen resolution each time they visit my
site...I just want my site to fill their predetermined viewing area regardless of what that
predetermined viewing area is.

Does that make more sense? If it's going to cause another argument, I'll drop the issue....
;)

Mark


"Bruise" <mkrupiarzATshaw.ca> wrote in message
news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
> Is there a code I can use to make my webpage maximize itself regardless of
> the viewers set screen resolution?
>
> Example: I designed the site with 800x600 resolution, but now I find out
> that most of my visitors use 1024 x 768 resolution. I want the page to be
> full screen for all visitors.
>
> Can anyone help me with this? I would truly appreciate it.
>
> Mark
>
>



Re: Maximizing Resolution by Murray

Murray
Tue Dec 20 14:37:42 CST 2005

Steve, your popcorn was stale....

--
Murray
============

"Steve Easton" <admin@95isalive.com> wrote in message
news:uD9XcrZBGHA.3396@tk2msftngp13.phx.gbl...
> If it's going to cause another argument, I'll drop the issue.... ;)
>
> Heavens no, don't drop it. This thread has been this mornings
> entertainment.
>
> As for your question, Murray's last post answers it.
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed..................
> ..............................with a computer
>
> "Bruise" <mkrupiarzATshaw.ca> wrote in message
> news:uD1C6UYBGHA.3156@TK2MSFTNGP12.phx.gbl...
> Wow! If I had known my first inquiry on this NG would produce this kind
> of 'fiery'
> debate.....
>
> I appreciate input from you all and I thank you. I do think, however,
> that I didn't word my
> question quite right. I do not want to change the viewers resolution on
> thier browser. I
> must want my site to fill the width of their viewing area that they are
> already at. There
> are some sites where, if my resolution were set at 800x600 or 1024x768, it
> would look
> exactly the same and leave no space on the right side of the designed
> area. If I designed
> my site in 1024x768 instead of 800x600, it would look right on someone's
> screen set to
> 1024x768, but be too big for someone with 800x600.
>
> That's all I want. I do not want to change their screen resolution each
> time they visit my
> site...I just want my site to fill their predetermined viewing area
> regardless of what that
> predetermined viewing area is.
>
> Does that make more sense? If it's going to cause another argument, I'll
> drop the issue....
> ;)
>
> Mark
>
>
> "Bruise" <mkrupiarzATshaw.ca> wrote in message
> news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
>> Is there a code I can use to make my webpage maximize itself regardless
>> of
>> the viewers set screen resolution?
>>
>> Example: I designed the site with 800x600 resolution, but now I find out
>> that most of my visitors use 1024 x 768 resolution. I want the page to
>> be
>> full screen for all visitors.
>>
>> Can anyone help me with this? I would truly appreciate it.
>>
>> Mark
>>
>>
>
>



Re: Maximizing Resolution by Steve

Steve
Tue Dec 20 17:22:39 CST 2005

LOL.

I'm on your side on this one.
Was going to chip in but said nah...

I guess the alternative would be to tell the op how, and then list all of
the reasons not to do it.

But, the bottom line is: IE in XP SP2 and all future versions will block it
anyway, so why bother
posting instructions.

;-)

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer



"Murray" <forums@HAHAgreat-web-sights.com> wrote in message
news:%233d26UaBGHA.3396@tk2msftngp13.phx.gbl...
> Steve, your popcorn was stale....
>
> --
> Murray
> ============
>
> "Steve Easton" <admin@95isalive.com> wrote in message
> news:uD9XcrZBGHA.3396@tk2msftngp13.phx.gbl...
>> If it's going to cause another argument, I'll drop the issue.... ;)
>>
>> Heavens no, don't drop it. This thread has been this mornings
>> entertainment.
>>
>> As for your question, Murray's last post answers it.
>>
>>
>> --
>> Steve Easton
>> Microsoft MVP FrontPage
>> 95isalive
>> This site is best viewed..................
>> ..............................with a computer
>>
>> "Bruise" <mkrupiarzATshaw.ca> wrote in message
>> news:uD1C6UYBGHA.3156@TK2MSFTNGP12.phx.gbl...
>> Wow! If I had known my first inquiry on this NG would produce this kind
>> of 'fiery'
>> debate.....
>>
>> I appreciate input from you all and I thank you. I do think, however,
>> that I didn't word my
>> question quite right. I do not want to change the viewers resolution on
>> thier browser. I
>> must want my site to fill the width of their viewing area that they are
>> already at. There
>> are some sites where, if my resolution were set at 800x600 or 1024x768,
>> it would look
>> exactly the same and leave no space on the right side of the designed
>> area. If I designed
>> my site in 1024x768 instead of 800x600, it would look right on someone's
>> screen set to
>> 1024x768, but be too big for someone with 800x600.
>>
>> That's all I want. I do not want to change their screen resolution each
>> time they visit my
>> site...I just want my site to fill their predetermined viewing area
>> regardless of what that
>> predetermined viewing area is.
>>
>> Does that make more sense? If it's going to cause another argument, I'll
>> drop the issue....
>> ;)
>>
>> Mark
>>
>>
>> "Bruise" <mkrupiarzATshaw.ca> wrote in message
>> news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
>>> Is there a code I can use to make my webpage maximize itself regardless
>>> of
>>> the viewers set screen resolution?
>>>
>>> Example: I designed the site with 800x600 resolution, but now I find
>>> out
>>> that most of my visitors use 1024 x 768 resolution. I want the page to
>>> be
>>> full screen for all visitors.
>>>
>>> Can anyone help me with this? I would truly appreciate it.
>>>
>>> Mark
>>>
>>>
>>
>>
>
>



Re: Maximizing Resolution by Rob

Rob
Tue Dec 20 18:19:56 CST 2005

Kinda like going through a long winded explanation of how to change a flat
tire, but neglecting to tell the newbie that the spare tire is also flat?


"Steve Easton" <admin@95isalive.com> wrote in message
news:uMytJxbBGHA.2920@tk2msftngp13.phx.gbl...
| LOL.
|
| I'm on your side on this one.
| Was going to chip in but said nah...
|
| I guess the alternative would be to tell the op how, and then list all of
| the reasons not to do it.
|
| But, the bottom line is: IE in XP SP2 and all future versions will block
it
| anyway, so why bother
| posting instructions.
|
| ;-)
|
| --
| Steve Easton
| Microsoft MVP FrontPage
| 95isalive
| This site is best viewed............
| .......................with a computer
|
|
|
| "Murray" <forums@HAHAgreat-web-sights.com> wrote in message
| news:%233d26UaBGHA.3396@tk2msftngp13.phx.gbl...
| > Steve, your popcorn was stale....
| >
| > --
| > Murray
| > ============
| >
| > "Steve Easton" <admin@95isalive.com> wrote in message
| > news:uD9XcrZBGHA.3396@tk2msftngp13.phx.gbl...
| >> If it's going to cause another argument, I'll drop the issue.... ;)
| >>
| >> Heavens no, don't drop it. This thread has been this mornings
| >> entertainment.
| >>
| >> As for your question, Murray's last post answers it.
| >>
| >>
| >> --
| >> Steve Easton
| >> Microsoft MVP FrontPage
| >> 95isalive
| >> This site is best viewed..................
| >> ..............................with a computer
| >>
| >> "Bruise" <mkrupiarzATshaw.ca> wrote in message
| >> news:uD1C6UYBGHA.3156@TK2MSFTNGP12.phx.gbl...
| >> Wow! If I had known my first inquiry on this NG would produce this
kind
| >> of 'fiery'
| >> debate.....
| >>
| >> I appreciate input from you all and I thank you. I do think, however,
| >> that I didn't word my
| >> question quite right. I do not want to change the viewers resolution
on
| >> thier browser. I
| >> must want my site to fill the width of their viewing area that they are
| >> already at. There
| >> are some sites where, if my resolution were set at 800x600 or 1024x768,
| >> it would look
| >> exactly the same and leave no space on the right side of the designed
| >> area. If I designed
| >> my site in 1024x768 instead of 800x600, it would look right on
someone's
| >> screen set to
| >> 1024x768, but be too big for someone with 800x600.
| >>
| >> That's all I want. I do not want to change their screen resolution
each
| >> time they visit my
| >> site...I just want my site to fill their predetermined viewing area
| >> regardless of what that
| >> predetermined viewing area is.
| >>
| >> Does that make more sense? If it's going to cause another argument,
I'll
| >> drop the issue....
| >> ;)
| >>
| >> Mark
| >>
| >>
| >> "Bruise" <mkrupiarzATshaw.ca> wrote in message
| >> news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
| >>> Is there a code I can use to make my webpage maximize itself
regardless
| >>> of
| >>> the viewers set screen resolution?
| >>>
| >>> Example: I designed the site with 800x600 resolution, but now I find
| >>> out
| >>> that most of my visitors use 1024 x 768 resolution. I want the page
to
| >>> be
| >>> full screen for all visitors.
| >>>
| >>> Can anyone help me with this? I would truly appreciate it.
| >>>
| >>> Mark
| >>>
| >>>
| >>
| >>
| >
| >
|
|



Re: Maximizing Resolution by Steve

Steve
Tue Dec 20 18:22:27 CST 2005

Yup.

;-)


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
.......................with a computer



"Rob Giordano (Crash)" <webmaster@siriussystems.invalid> wrote in message
news:OSp3DRcBGHA.2300@TK2MSFTNGP15.phx.gbl...
> Kinda like going through a long winded explanation of how to change a flat
> tire, but neglecting to tell the newbie that the spare tire is also flat?
>
>
> "Steve Easton" <admin@95isalive.com> wrote in message
> news:uMytJxbBGHA.2920@tk2msftngp13.phx.gbl...
> | LOL.
> |
> | I'm on your side on this one.
> | Was going to chip in but said nah...
> |
> | I guess the alternative would be to tell the op how, and then list all
> of
> | the reasons not to do it.
> |
> | But, the bottom line is: IE in XP SP2 and all future versions will block
> it
> | anyway, so why bother
> | posting instructions.
> |
> | ;-)
> |
> | --
> | Steve Easton
> | Microsoft MVP FrontPage
> | 95isalive
> | This site is best viewed............
> | .......................with a computer
> |
> |
> |
> | "Murray" <forums@HAHAgreat-web-sights.com> wrote in message
> | news:%233d26UaBGHA.3396@tk2msftngp13.phx.gbl...
> | > Steve, your popcorn was stale....
> | >
> | > --
> | > Murray
> | > ============
> | >
> | > "Steve Easton" <admin@95isalive.com> wrote in message
> | > news:uD9XcrZBGHA.3396@tk2msftngp13.phx.gbl...
> | >> If it's going to cause another argument, I'll drop the issue.... ;)
> | >>
> | >> Heavens no, don't drop it. This thread has been this mornings
> | >> entertainment.
> | >>
> | >> As for your question, Murray's last post answers it.
> | >>
> | >>
> | >> --
> | >> Steve Easton
> | >> Microsoft MVP FrontPage
> | >> 95isalive
> | >> This site is best viewed..................
> | >> ..............................with a computer
> | >>
> | >> "Bruise" <mkrupiarzATshaw.ca> wrote in message
> | >> news:uD1C6UYBGHA.3156@TK2MSFTNGP12.phx.gbl...
> | >> Wow! If I had known my first inquiry on this NG would produce this
> kind
> | >> of 'fiery'
> | >> debate.....
> | >>
> | >> I appreciate input from you all and I thank you. I do think,
> however,
> | >> that I didn't word my
> | >> question quite right. I do not want to change the viewers resolution
> on
> | >> thier browser. I
> | >> must want my site to fill the width of their viewing area that they
> are
> | >> already at. There
> | >> are some sites where, if my resolution were set at 800x600 or
> 1024x768,
> | >> it would look
> | >> exactly the same and leave no space on the right side of the designed
> | >> area. If I designed
> | >> my site in 1024x768 instead of 800x600, it would look right on
> someone's
> | >> screen set to
> | >> 1024x768, but be too big for someone with 800x600.
> | >>
> | >> That's all I want. I do not want to change their screen resolution
> each
> | >> time they visit my
> | >> site...I just want my site to fill their predetermined viewing area
> | >> regardless of what that
> | >> predetermined viewing area is.
> | >>
> | >> Does that make more sense? If it's going to cause another argument,
> I'll
> | >> drop the issue....
> | >> ;)
> | >>
> | >> Mark
> | >>
> | >>
> | >> "Bruise" <mkrupiarzATshaw.ca> wrote in message
> | >> news:%23h5a3BWBGHA.2668@TK2MSFTNGP14.phx.gbl...
> | >>> Is there a code I can use to make my webpage maximize itself
> regardless
> | >>> of
> | >>> the viewers set screen resolution?
> | >>>
> | >>> Example: I designed the site with 800x600 resolution, but now I
> find
> | >>> out
> | >>> that most of my visitors use 1024 x 768 resolution. I want the page
> to
> | >>> be
> | >>> full screen for all visitors.
> | >>>
> | >>> Can anyone help me with this? I would truly appreciate it.
> | >>>
> | >>> Mark
> | >>>
> | >>>
> | >>
> | >>
> | >
> | >
> |
> |
>
>