PC Review


Reply
Thread Tools Rate Thread

How do I set page size in a browser

 
 
=?Utf-8?B?Tmljaw==?=
Guest
Posts: n/a
 
      8th Apr 2005
I am trying to set a web page to be displayed in a browser window sized 153px
X 600px. Setting page size seems to only represent what you see in Frontpage
and not in Internet Explorer when opening it?
Any Suggestions?
 
Reply With Quote
 
 
 
 
Mike Mueller
Guest
Posts: n/a
 
      8th Apr 2005
It sounds like you are trying to create a pop-up. There are
javascripts available which can do this, or you could use
SPAWN from Jimco-www.jimcoaddins.com


"Nick" <(E-Mail Removed)> wrote in message
news:246A2C5F-824F-4D71-A0B9-(E-Mail Removed)...
:I am trying to set a web page to be displayed in a browser
window sized 153px
: X 600px. Setting page size seems to only represent what
you see in Frontpage
: and not in Internet Explorer when opening it?
: Any Suggestions?


 
Reply With Quote
 
=?Utf-8?B?Tmljaw==?=
Guest
Posts: n/a
 
      8th Apr 2005
I am actually using this script, but it resets the size depending up the
users screen resolution.

<!--
function pleaseResize()
{
window.event.returnValue=true;
top.window.resizeTo(screen.availWidth,screen.availHeight);
top.window.resizeTo(screen.availWidth-1,screen.availHeight-1);
}


I want it to be able to set the size 153X600

Thank you.,

"Mike Mueller" wrote:

> It sounds like you are trying to create a pop-up. There are
> javascripts available which can do this, or you could use
> SPAWN from Jimco-www.jimcoaddins.com
>
>
> "Nick" <(E-Mail Removed)> wrote in message
> news:246A2C5F-824F-4D71-A0B9-(E-Mail Removed)...
> :I am trying to set a web page to be displayed in a browser
> window sized 153px
> : X 600px. Setting page size seems to only represent what
> you see in Frontpage
> : and not in Internet Explorer when opening it?
> : Any Suggestions?
>
>
>

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      8th Apr 2005
What would it do to my 1280 x 1024 screen with a browser window at about
720px wide (that's where I like it)?

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

"Nick" <(E-Mail Removed)> wrote in message
news:70844FA5-B477-48A8-89AA-(E-Mail Removed)...
>I am actually using this script, but it resets the size depending up the
> users screen resolution.
>
> <!--
> function pleaseResize()
> {
> window.event.returnValue=true;
> top.window.resizeTo(screen.availWidth,screen.availHeight);
> top.window.resizeTo(screen.availWidth-1,screen.availHeight-1);
> }
>
>
> I want it to be able to set the size 153X600
>
> Thank you.,
>
> "Mike Mueller" wrote:
>
>> It sounds like you are trying to create a pop-up. There are
>> javascripts available which can do this, or you could use
>> SPAWN from Jimco-www.jimcoaddins.com
>>
>>
>> "Nick" <(E-Mail Removed)> wrote in message
>> news:246A2C5F-824F-4D71-A0B9-(E-Mail Removed)...
>> :I am trying to set a web page to be displayed in a browser
>> window sized 153px
>> : X 600px. Setting page size seems to only represent what
>> you see in Frontpage
>> : and not in Internet Explorer when opening it?
>> : Any Suggestions?
>>
>>
>>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      8th Apr 2005
I think you are going to run into Windows XP SP2 restrictions, if you trigger this on page load,
also users may have a issue with you resizing their browser, even with the code below.

To work around this you need to make is so that it is trigger by a user's action of clicking on a
link, which would then call the JavaScript function to create a new popup windows at the 153 x 600
pixels.

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

"Nick" <(E-Mail Removed)> wrote in message
news:70844FA5-B477-48A8-89AA-(E-Mail Removed)...
>I am actually using this script, but it resets the size depending up the
> users screen resolution.
>
> <!--
> function pleaseResize()
> {
> window.event.returnValue=true;
> top.window.resizeTo(screen.availWidth,screen.availHeight);
> top.window.resizeTo(screen.availWidth-1,screen.availHeight-1);
> }
>
>
> I want it to be able to set the size 153X600
>
> Thank you.,
>
> "Mike Mueller" wrote:
>
>> It sounds like you are trying to create a pop-up. There are
>> javascripts available which can do this, or you could use
>> SPAWN from Jimco-www.jimcoaddins.com
>>
>>
>> "Nick" <(E-Mail Removed)> wrote in message
>> news:246A2C5F-824F-4D71-A0B9-(E-Mail Removed)...
>> :I am trying to set a web page to be displayed in a browser
>> window sized 153px
>> : X 600px. Setting page size seems to only represent what
>> you see in Frontpage
>> : and not in Internet Explorer when opening it?
>> : Any Suggestions?
>>
>>
>>



 
Reply With Quote
 
Mark Fitzpatrick
Guest
Posts: n/a
 
      9th Apr 2005
Then put everything in a table with these dimensions (though height is not
really supported in a table). HTML makes no provision for setting the size
of a page but placing everything in a one cell table should work.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage

"Nick" <(E-Mail Removed)> wrote in message
news:70844FA5-B477-48A8-89AA-(E-Mail Removed)...
>I am actually using this script, but it resets the size depending up the
> users screen resolution.
>
> <!--
> function pleaseResize()
> {
> window.event.returnValue=true;
> top.window.resizeTo(screen.availWidth,screen.availHeight);
> top.window.resizeTo(screen.availWidth-1,screen.availHeight-1);
> }
>
>
> I want it to be able to set the size 153X600
>
> Thank you.,
>
> "Mike Mueller" wrote:
>
>> It sounds like you are trying to create a pop-up. There are
>> javascripts available which can do this, or you could use
>> SPAWN from Jimco-www.jimcoaddins.com
>>
>>
>> "Nick" <(E-Mail Removed)> wrote in message
>> news:246A2C5F-824F-4D71-A0B9-(E-Mail Removed)...
>> :I am trying to set a web page to be displayed in a browser
>> window sized 153px
>> : X 600px. Setting page size seems to only represent what
>> you see in Frontpage
>> : and not in Internet Explorer when opening it?
>> : Any Suggestions?
>>
>>
>>



 
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
Frame page - size and center in browser? Eva_S Microsoft Frontpage 2 27th Nov 2009 01:42 AM
Adjusting a FP2000 frames page template size to browser window? =?Utf-8?B?cHJvZmZh?= Microsoft Frontpage 3 28th Feb 2006 08:26 PM
How do you measure the size of a page delivered to the browser (and the Viewstate) Joe Fallon Microsoft ASP .NET 5 28th Jul 2005 03:04 AM
Upload huge file size: "The page cannot be displayed" browser error Joe Microsoft ASP .NET 7 6th Jan 2005 02:21 AM
Browser page size Glen Windows XP Internet Explorer 1 7th May 2004 09:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:43 PM.