How do I set automatic screen setting sizing for a web page?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I create a web page that will change with the settings that a user has
on their computer?
 
You have no control over the *operating system* settings such as screen
resolution from within your website.

However there are ways with Javascript to load a predesigned page for a
specific screen resolution e.g. if the user has 800x600, then a javascript
can detect that resolution and load (redirect) to a site/page for viewing
at 800x600, and for each of as many resolutions as you like: this would
effectively mean duplicating the entire site, to make all page fit for
example 800x600 and 1024x768 and so on.

It is better that you put your site within tables and set the width in %
rather than fixed pixel width. Then the site will adjust to fit the user's
screen settings.

Scripts available at http://javascript.internet.com
 
Back
Top