PC Review


Reply
Thread Tools Rate Thread

Auto resize window content?

 
 
=?Utf-8?B?UldQYXJyb3Q=?=
Guest
Posts: n/a
 
      7th Jul 2006
I have a page with text/pictures ect on them, The page looks great with the
window max. but some content is lost if I make the window smaller than max.
How do I make the page adjust the content to look the same regardless of the
size of the browser window?
 
Reply With Quote
 
 
 
 
Kevin Spencer
Guest
Posts: n/a
 
      7th Jul 2006
Have you ever seen one that does? If so, point it out to us. The problem
here is that dynamically sizing the content in a browser window is an art
that is difficult at best.

For example, let's say you have a table with 2 columns in it. Each column
has an image that is 300X200 pixels wide. This means that to display the
images at full size, the windows has to be at least 600 pixels wide. So,
what to do if the window is resized smaller than this? You can use
JavaScript to shrink the size of the images proportionally, but how much do
you want to be able to shrink them? After all, at a certain point they will
become illegible. How d you determine that point? On the other hand, you may
have several divs (layers) with images in them. Do you want them to shrink,
overlap, or what? And again, what is the cutoff point? Also, you would have
to determine what to do about the relative locations and space between
objects, which also shrinks as the window shrinks. And what about text? Text
will do all kinds of weird things, like wrapping in different places when it
outgrows its container. And you can't make text very small at all before it
is illegible.

I would suggest you take a tour of a number of professional web sites and
see how they handle the issue. If you find one you like, you can rip off
their technique, if you understand JavaScript and CSS well enough.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

Big thicks are made up of lots of little thins.



"RWParrot" <(E-Mail Removed)> wrote in message
news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
>I have a page with text/pictures ect on them, The page looks great with the
> window max. but some content is lost if I make the window smaller than
> max.
> How do I make the page adjust the content to look the same regardless of
> the
> size of the browser window?



 
Reply With Quote
 
=?Utf-8?B?UldQYXJyb3Q=?=
Guest
Posts: n/a
 
      7th Jul 2006
Lets take this page for exapmle, in the frame that displays the content of
the post if I click the maximize button I see the very same amount of content
as if the browser is at the default size and vice-versa.

"Kevin Spencer" wrote:

> Have you ever seen one that does? If so, point it out to us. The problem
> here is that dynamically sizing the content in a browser window is an art
> that is difficult at best.
>
> For example, let's say you have a table with 2 columns in it. Each column
> has an image that is 300X200 pixels wide. This means that to display the
> images at full size, the windows has to be at least 600 pixels wide. So,
> what to do if the window is resized smaller than this? You can use
> JavaScript to shrink the size of the images proportionally, but how much do
> you want to be able to shrink them? After all, at a certain point they will
> become illegible. How d you determine that point? On the other hand, you may
> have several divs (layers) with images in them. Do you want them to shrink,
> overlap, or what? And again, what is the cutoff point? Also, you would have
> to determine what to do about the relative locations and space between
> objects, which also shrinks as the window shrinks. And what about text? Text
> will do all kinds of weird things, like wrapping in different places when it
> outgrows its container. And you can't make text very small at all before it
> is illegible.
>
> I would suggest you take a tour of a number of professional web sites and
> see how they handle the issue. If you find one you like, you can rip off
> their technique, if you understand JavaScript and CSS well enough.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> Professional Chicken Salad Alchemist
>
> Big thicks are made up of lots of little thins.
>
>
>
> "RWParrot" <(E-Mail Removed)> wrote in message
> news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
> >I have a page with text/pictures ect on them, The page looks great with the
> > window max. but some content is lost if I make the window smaller than
> > max.
> > How do I make the page adjust the content to look the same regardless of
> > the
> > size of the browser window?

>
>
>

 
Reply With Quote
 
Bob Lehmann
Guest
Posts: n/a
 
      7th Jul 2006
>> Lets take this page for exapmle
Which page would that be?

Bob Lehmann

"RWParrot" <(E-Mail Removed)> wrote in message
news:0FB8B7C5-B853-4229-BA0F-(E-Mail Removed)...
> Lets take this page for exapmle, in the frame that displays the content of
> the post if I click the maximize button I see the very same amount of

content
> as if the browser is at the default size and vice-versa.
>
> "Kevin Spencer" wrote:
>
> > Have you ever seen one that does? If so, point it out to us. The problem
> > here is that dynamically sizing the content in a browser window is an

art
> > that is difficult at best.
> >
> > For example, let's say you have a table with 2 columns in it. Each

column
> > has an image that is 300X200 pixels wide. This means that to display the
> > images at full size, the windows has to be at least 600 pixels wide. So,
> > what to do if the window is resized smaller than this? You can use
> > JavaScript to shrink the size of the images proportionally, but how much

do
> > you want to be able to shrink them? After all, at a certain point they

will
> > become illegible. How d you determine that point? On the other hand, you

may
> > have several divs (layers) with images in them. Do you want them to

shrink,
> > overlap, or what? And again, what is the cutoff point? Also, you would

have
> > to determine what to do about the relative locations and space between
> > objects, which also shrinks as the window shrinks. And what about text?

Text
> > will do all kinds of weird things, like wrapping in different places

when it
> > outgrows its container. And you can't make text very small at all before

it
> > is illegible.
> >
> > I would suggest you take a tour of a number of professional web sites

and
> > see how they handle the issue. If you find one you like, you can rip off
> > their technique, if you understand JavaScript and CSS well enough.
> >
> > --
> > HTH,
> >
> > Kevin Spencer
> > Microsoft MVP
> > Professional Chicken Salad Alchemist
> >
> > Big thicks are made up of lots of little thins.
> >
> >
> >
> > "RWParrot" <(E-Mail Removed)> wrote in message
> > news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
> > >I have a page with text/pictures ect on them, The page looks great with

the
> > > window max. but some content is lost if I make the window smaller than
> > > max.
> > > How do I make the page adjust the content to look the same regardless

of
> > > the
> > > size of the browser window?

> >
> >
> >



 
Reply With Quote
 
=?Utf-8?B?UldQYXJyb3Q=?=
Guest
Posts: n/a
 
      7th Jul 2006
Sorry, I was reading the posts on the MS Newsgroup web site.

http://www.microsoft.com/wn3/aspx/po...l=http://www.m

"Bob Lehmann" wrote:

> >> Lets take this page for exapmle

> Which page would that be?
>
> Bob Lehmann
>
> "RWParrot" <(E-Mail Removed)> wrote in message
> news:0FB8B7C5-B853-4229-BA0F-(E-Mail Removed)...
> > Lets take this page for exapmle, in the frame that displays the content of
> > the post if I click the maximize button I see the very same amount of

> content
> > as if the browser is at the default size and vice-versa.
> >
> > "Kevin Spencer" wrote:
> >
> > > Have you ever seen one that does? If so, point it out to us. The problem
> > > here is that dynamically sizing the content in a browser window is an

> art
> > > that is difficult at best.
> > >
> > > For example, let's say you have a table with 2 columns in it. Each

> column
> > > has an image that is 300X200 pixels wide. This means that to display the
> > > images at full size, the windows has to be at least 600 pixels wide. So,
> > > what to do if the window is resized smaller than this? You can use
> > > JavaScript to shrink the size of the images proportionally, but how much

> do
> > > you want to be able to shrink them? After all, at a certain point they

> will
> > > become illegible. How d you determine that point? On the other hand, you

> may
> > > have several divs (layers) with images in them. Do you want them to

> shrink,
> > > overlap, or what? And again, what is the cutoff point? Also, you would

> have
> > > to determine what to do about the relative locations and space between
> > > objects, which also shrinks as the window shrinks. And what about text?

> Text
> > > will do all kinds of weird things, like wrapping in different places

> when it
> > > outgrows its container. And you can't make text very small at all before

> it
> > > is illegible.
> > >
> > > I would suggest you take a tour of a number of professional web sites

> and
> > > see how they handle the issue. If you find one you like, you can rip off
> > > their technique, if you understand JavaScript and CSS well enough.
> > >
> > > --
> > > HTH,
> > >
> > > Kevin Spencer
> > > Microsoft MVP
> > > Professional Chicken Salad Alchemist
> > >
> > > Big thicks are made up of lots of little thins.
> > >
> > >
> > >
> > > "RWParrot" <(E-Mail Removed)> wrote in message
> > > news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
> > > >I have a page with text/pictures ect on them, The page looks great with

> the
> > > > window max. but some content is lost if I make the window smaller than
> > > > max.
> > > > How do I make the page adjust the content to look the same regardless

> of
> > > > the
> > > > size of the browser window?
> > >
> > >
> > >

>
>
>

 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a
 
      8th Jul 2006
What page is "this page" ?

I'm not using the web interface for this newsgroup I use Outlook Express, so
I don't know what you're referring to.


"RWParrot" <(E-Mail Removed)> wrote in message
news:0FB8B7C5-B853-4229-BA0F-(E-Mail Removed)...
> Lets take this page for exapmle, in the frame that displays the content of
> the post if I click the maximize button I see the very same amount of
> content
> as if the browser is at the default size and vice-versa.
>
> "Kevin Spencer" wrote:
>
>> Have you ever seen one that does? If so, point it out to us. The problem
>> here is that dynamically sizing the content in a browser window is an art
>> that is difficult at best.
>>
>> For example, let's say you have a table with 2 columns in it. Each column
>> has an image that is 300X200 pixels wide. This means that to display the
>> images at full size, the windows has to be at least 600 pixels wide. So,
>> what to do if the window is resized smaller than this? You can use
>> JavaScript to shrink the size of the images proportionally, but how much
>> do
>> you want to be able to shrink them? After all, at a certain point they
>> will
>> become illegible. How d you determine that point? On the other hand, you
>> may
>> have several divs (layers) with images in them. Do you want them to
>> shrink,
>> overlap, or what? And again, what is the cutoff point? Also, you would
>> have
>> to determine what to do about the relative locations and space between
>> objects, which also shrinks as the window shrinks. And what about text?
>> Text
>> will do all kinds of weird things, like wrapping in different places when
>> it
>> outgrows its container. And you can't make text very small at all before
>> it
>> is illegible.
>>
>> I would suggest you take a tour of a number of professional web sites and
>> see how they handle the issue. If you find one you like, you can rip off
>> their technique, if you understand JavaScript and CSS well enough.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> Professional Chicken Salad Alchemist
>>
>> Big thicks are made up of lots of little thins.
>>
>>
>>
>> "RWParrot" <(E-Mail Removed)> wrote in message
>> news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
>> >I have a page with text/pictures ect on them, The page looks great with
>> >the
>> > window max. but some content is lost if I make the window smaller than
>> > max.
>> > How do I make the page adjust the content to look the same regardless
>> > of
>> > the
>> > size of the browser window?

>>
>>
>>



 
Reply With Quote
 
Andrew Murray
Guest
Posts: n/a
 
      8th Jul 2006
I get a "Page Not Found" by following that link - do you have to signon
through MSPassport or something?

"RWParrot" <(E-Mail Removed)> wrote in message
news:3DC5E773-FB70-454F-B377-(E-Mail Removed)...
> Sorry, I was reading the posts on the MS Newsgroup web site.
>
> http://www.microsoft.com/wn3/aspx/po...l=http://www.m
>
> "Bob Lehmann" wrote:
>
>> >> Lets take this page for exapmle

>> Which page would that be?
>>
>> Bob Lehmann
>>
>> "RWParrot" <(E-Mail Removed)> wrote in message
>> news:0FB8B7C5-B853-4229-BA0F-(E-Mail Removed)...
>> > Lets take this page for exapmle, in the frame that displays the content
>> > of
>> > the post if I click the maximize button I see the very same amount of

>> content
>> > as if the browser is at the default size and vice-versa.
>> >
>> > "Kevin Spencer" wrote:
>> >
>> > > Have you ever seen one that does? If so, point it out to us. The
>> > > problem
>> > > here is that dynamically sizing the content in a browser window is an

>> art
>> > > that is difficult at best.
>> > >
>> > > For example, let's say you have a table with 2 columns in it. Each

>> column
>> > > has an image that is 300X200 pixels wide. This means that to display
>> > > the
>> > > images at full size, the windows has to be at least 600 pixels wide.
>> > > So,
>> > > what to do if the window is resized smaller than this? You can use
>> > > JavaScript to shrink the size of the images proportionally, but how
>> > > much

>> do
>> > > you want to be able to shrink them? After all, at a certain point
>> > > they

>> will
>> > > become illegible. How d you determine that point? On the other hand,
>> > > you

>> may
>> > > have several divs (layers) with images in them. Do you want them to

>> shrink,
>> > > overlap, or what? And again, what is the cutoff point? Also, you
>> > > would

>> have
>> > > to determine what to do about the relative locations and space
>> > > between
>> > > objects, which also shrinks as the window shrinks. And what about
>> > > text?

>> Text
>> > > will do all kinds of weird things, like wrapping in different places

>> when it
>> > > outgrows its container. And you can't make text very small at all
>> > > before

>> it
>> > > is illegible.
>> > >
>> > > I would suggest you take a tour of a number of professional web sites

>> and
>> > > see how they handle the issue. If you find one you like, you can rip
>> > > off
>> > > their technique, if you understand JavaScript and CSS well enough.
>> > >
>> > > --
>> > > HTH,
>> > >
>> > > Kevin Spencer
>> > > Microsoft MVP
>> > > Professional Chicken Salad Alchemist
>> > >
>> > > Big thicks are made up of lots of little thins.
>> > >
>> > >
>> > >
>> > > "RWParrot" <(E-Mail Removed)> wrote in message
>> > > news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
>> > > >I have a page with text/pictures ect on them, The page looks great
>> > > >with

>> the
>> > > > window max. but some content is lost if I make the window smaller
>> > > > than
>> > > > max.
>> > > > How do I make the page adjust the content to look the same
>> > > > regardless

>> of
>> > > > the
>> > > > size of the browser window?
>> > >
>> > >
>> > >

>>
>>
>>



 
Reply With Quote
 
Bob Lehmann
Guest
Posts: n/a
 
      8th Jul 2006
It uses tables, with the table and cell widths set as percentages.

Bob Lehmann

"RWParrot" <(E-Mail Removed)> wrote in message
news:3DC5E773-FB70-454F-B377-(E-Mail Removed)...
> Sorry, I was reading the posts on the MS Newsgroup web site.
>
>

http://www.microsoft.com/wn3/aspx/po...l=http://www.m
>
> "Bob Lehmann" wrote:
>
> > >> Lets take this page for exapmle

> > Which page would that be?
> >
> > Bob Lehmann
> >
> > "RWParrot" <(E-Mail Removed)> wrote in message
> > news:0FB8B7C5-B853-4229-BA0F-(E-Mail Removed)...
> > > Lets take this page for exapmle, in the frame that displays the

content of
> > > the post if I click the maximize button I see the very same amount of

> > content
> > > as if the browser is at the default size and vice-versa.
> > >
> > > "Kevin Spencer" wrote:
> > >
> > > > Have you ever seen one that does? If so, point it out to us. The

problem
> > > > here is that dynamically sizing the content in a browser window is

an
> > art
> > > > that is difficult at best.
> > > >
> > > > For example, let's say you have a table with 2 columns in it. Each

> > column
> > > > has an image that is 300X200 pixels wide. This means that to display

the
> > > > images at full size, the windows has to be at least 600 pixels wide.

So,
> > > > what to do if the window is resized smaller than this? You can use
> > > > JavaScript to shrink the size of the images proportionally, but how

much
> > do
> > > > you want to be able to shrink them? After all, at a certain point

they
> > will
> > > > become illegible. How d you determine that point? On the other hand,

you
> > may
> > > > have several divs (layers) with images in them. Do you want them to

> > shrink,
> > > > overlap, or what? And again, what is the cutoff point? Also, you

would
> > have
> > > > to determine what to do about the relative locations and space

between
> > > > objects, which also shrinks as the window shrinks. And what about

text?
> > Text
> > > > will do all kinds of weird things, like wrapping in different places

> > when it
> > > > outgrows its container. And you can't make text very small at all

before
> > it
> > > > is illegible.
> > > >
> > > > I would suggest you take a tour of a number of professional web

sites
> > and
> > > > see how they handle the issue. If you find one you like, you can rip

off
> > > > their technique, if you understand JavaScript and CSS well enough.
> > > >
> > > > --
> > > > HTH,
> > > >
> > > > Kevin Spencer
> > > > Microsoft MVP
> > > > Professional Chicken Salad Alchemist
> > > >
> > > > Big thicks are made up of lots of little thins.
> > > >
> > > >
> > > >
> > > > "RWParrot" <(E-Mail Removed)> wrote in message
> > > > news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
> > > > >I have a page with text/pictures ect on them, The page looks great

with
> > the
> > > > > window max. but some content is lost if I make the window smaller

than
> > > > > max.
> > > > > How do I make the page adjust the content to look the same

regardless
> > of
> > > > > the
> > > > > size of the browser window?
> > > >
> > > >
> > > >

> >
> >
> >



 
Reply With Quote
 
=?Utf-8?B?UldQYXJyb3Q=?=
Guest
Posts: n/a
 
      8th Jul 2006
Thank you, Thats what it took.

Thanks again,

Russ

"Bob Lehmann" wrote:

> It uses tables, with the table and cell widths set as percentages.
>
> Bob Lehmann
>
> "RWParrot" <(E-Mail Removed)> wrote in message
> news:3DC5E773-FB70-454F-B377-(E-Mail Removed)...
> > Sorry, I was reading the posts on the MS Newsgroup web site.
> >
> >

> http://www.microsoft.com/wn3/aspx/po...l=http://www.m
> >
> > "Bob Lehmann" wrote:
> >
> > > >> Lets take this page for exapmle
> > > Which page would that be?
> > >
> > > Bob Lehmann
> > >
> > > "RWParrot" <(E-Mail Removed)> wrote in message
> > > news:0FB8B7C5-B853-4229-BA0F-(E-Mail Removed)...
> > > > Lets take this page for exapmle, in the frame that displays the

> content of
> > > > the post if I click the maximize button I see the very same amount of
> > > content
> > > > as if the browser is at the default size and vice-versa.
> > > >
> > > > "Kevin Spencer" wrote:
> > > >
> > > > > Have you ever seen one that does? If so, point it out to us. The

> problem
> > > > > here is that dynamically sizing the content in a browser window is

> an
> > > art
> > > > > that is difficult at best.
> > > > >
> > > > > For example, let's say you have a table with 2 columns in it. Each
> > > column
> > > > > has an image that is 300X200 pixels wide. This means that to display

> the
> > > > > images at full size, the windows has to be at least 600 pixels wide.

> So,
> > > > > what to do if the window is resized smaller than this? You can use
> > > > > JavaScript to shrink the size of the images proportionally, but how

> much
> > > do
> > > > > you want to be able to shrink them? After all, at a certain point

> they
> > > will
> > > > > become illegible. How d you determine that point? On the other hand,

> you
> > > may
> > > > > have several divs (layers) with images in them. Do you want them to
> > > shrink,
> > > > > overlap, or what? And again, what is the cutoff point? Also, you

> would
> > > have
> > > > > to determine what to do about the relative locations and space

> between
> > > > > objects, which also shrinks as the window shrinks. And what about

> text?
> > > Text
> > > > > will do all kinds of weird things, like wrapping in different places
> > > when it
> > > > > outgrows its container. And you can't make text very small at all

> before
> > > it
> > > > > is illegible.
> > > > >
> > > > > I would suggest you take a tour of a number of professional web

> sites
> > > and
> > > > > see how they handle the issue. If you find one you like, you can rip

> off
> > > > > their technique, if you understand JavaScript and CSS well enough.
> > > > >
> > > > > --
> > > > > HTH,
> > > > >
> > > > > Kevin Spencer
> > > > > Microsoft MVP
> > > > > Professional Chicken Salad Alchemist
> > > > >
> > > > > Big thicks are made up of lots of little thins.
> > > > >
> > > > >
> > > > >
> > > > > "RWParrot" <(E-Mail Removed)> wrote in message
> > > > > news:6D1A3A28-3244-437A-9637-(E-Mail Removed)...
> > > > > >I have a page with text/pictures ect on them, The page looks great

> with
> > > the
> > > > > > window max. but some content is lost if I make the window smaller

> than
> > > > > > max.
> > > > > > How do I make the page adjust the content to look the same

> regardless
> > > of
> > > > > > the
> > > > > > size of the browser window?
> > > > >
> > > > >
> > > > >
> > >
> > >
> > >

>
>
>

 
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
FrontPage 2002 would like web pages to auto resize to window size =?Utf-8?B?Sm9lIEs=?= Microsoft Frontpage 4 16th Jul 2006 04:10 PM
Auto resize and position controls upon form's Resize even helpful sql Microsoft Dot NET 4 31st Mar 2006 01:45 AM
Auto resize and position controls upon form's Resize even helpful sql Microsoft C# .NET 3 31st Mar 2006 01:45 AM
Auto resize and position controls upon form's Resize even helpful sql Microsoft VB .NET 3 31st Mar 2006 01:45 AM
Auto resize, auto realign, auto ANYTHING driving me crazy spasmous@yahoo.com Microsoft Powerpoint 2 30th Apr 2005 02:14 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:13 PM.