Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

viewable screen at 800*600 3

Status
Not open for further replies.

gus121

Technical User
May 9, 2002
298
GB
What is the perfect number of pixel for my website to display at to fill the whole viewable screen at a 800*600 resolution?


thanks

Angus
 
790 x 450 (approx) will fill the screen on a monitor set at 800x600

There's always a better way...
 
Don't use pixels (period) Even if the user is using your magic number resolution, they may not be using the browser Maximized. The best option os to use percents... That way, no matter what browser or prefrence they can see whole page without horizontal scrolling. Agian, what is important enough to write a site about, but not imortant enough that you limit your audience to certain screen resolutions and browser window sizes. If I have to resize my browser to veiw your site, I move to another site that has more imformation than yours does.... And let's me veiw however I, the end user, want to veiw the site.
 
There is a simple way to test your website (doesn't matter what size your monitor is)

It's called BOOKMARKLETS
Some quy made a whole site [started in 1998] of this kind of tricks.
I don't know if he invented this name or that he got it from the Netscape JavaScript Guide

This will do the trick:

Simply bookmark a normal URL first (for example in your favorites.
Then open the appropriate dialog box to edit your favorites,
right-click the URL ( choose "property" and replace
the URL with the one of the next javascript code.

javascript:resizeTo(800,600)

or:

javascript:resizeTo(800,600);moveTo(100,100)

Do also change the the "name" of the favorite to something like:

Resize Window to 800 x 600

or:

Resize Window to 800 x 600 , move to 100,100

Click Apply/OK even if you are warned of something !!!

Then go the website you want to test.
When the site is loaded just click your new favorite (with the javascript-URL) and your window will change to the size 800 x 600

At the same way you can make more favorites will all the sizes you want to test.

When you want to see more BOOKMARKLETS:
He has a lot of other example's.
Read all about at and have fun:


Hope this helps,
Erik


<-- My sport: Boomerang throwing !!
!! Many Happy Returns !! -->
 
Erik thanks that is very usefull thanks.

I planed to design my site initialy in percent.
800*600 is the minimum screen resolution I will be catering for and therfore i have to test that my design fits within the minimum visible screen at that resolution.

Angus
 
You can find some advice on screen and pixel sizes at . It was written in 1999, so it's a bit dated now (I wouldn't worry too much about fitting into 640 x 480), but much of the advice is still valid.

As stated, the best design is flexible enough to fit into any size, but it's still useful to know the maximum size for graphic elements on the web, just don't feel compelled to make everthing (or anything!) that big.

-- Chris Hunt
Extra Connections Ltd
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top