Re: Maximizing Resolution
- From: "Murray" <forums@xxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 20 Dec 2005 08:28:27 -0500
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@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:46A04363-CB08-47C7-8A79-5402101BC55A@xxxxxxxxxxxxxxxx
> 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
>>
>>
>>
.
- Follow-Ups:
- Re: Maximizing Resolution
- From: NomisJM
- Re: Maximizing Resolution
- References:
- Maximizing Resolution
- From: Bruise
- Maximizing Resolution
- Prev by Date: Re: Maximizing Resolution
- Next by Date: Re: Maximizing Resolution
- Previous by thread: Re: Maximizing Resolution
- Next by thread: Re: Maximizing Resolution
- Index(es):
Relevant Pages
|