About 800x600 display resolution

They have: 42 posts

Joined: Jun 2004

http://www.w3schools.com/browsers/browsers_stats.asp

Can it realy be true what they say there? That 35% of people still uses 800x600 resolution. I could have never imagined that. If it really is true I have to make some serious changes to my design policy. Like if I use vertical menu it must be fully visible on 800x600 also.

-Teemu

Megan's picture

She has: 11,421 posts

Joined: Jun 1999

I don't think this is a "still" issue. It may be a "forever" issue. People will always want to see things bigger. Why? Because people will always have poor eyesight. You might be young and well sighted, but many people are not so lucky. Pretty much everyone I know over the age of 45 or so needs reading glasses. And yes, they like to run their screen resolutions higher. Not something that's going to change. Not to mention alternative browsing devices and things like that.

Although, I think new computers are now coming at 1024 standard so maybe eventually it will switch over. I mean, 70% of people are "still" using IE. That's not about to change anytime soon either.

P.S. Really nice to see Mozilla picking up some browser share there! Go Moz! (and Opera, of course Smiling) So much for all those people who think 99% of their visitors are using IE.

Suzanne's picture

She has: 5,507 posts

Joined: Feb 2000

I run 1280x960, and my browser window is open to 800x900. Stats aren't the whole story.

Megan's picture

She has: 11,421 posts

Joined: Jun 1999

Yeah, mine is at 1152 but I've got my windows taskbar on the right and the Opera sidebar on the left so there's not as much room left in the middle. I like to keep those line lengths shorter anyway. Easier reading.

Roo's picture

She has: 840 posts

Joined: Apr 1999

Quote: Pretty much everyone I know over the age of 45 or so needs reading glasses.

Amen! Try bi-focals! I HATE needing to test at 1024X...I can barely find my mouse cursor. There is *no way* I can even test above that.

If 1024 becomes minimum, I'm screwed! (I'm on a 17 inch monitor, and I'm about 18 inches from it.) I'll need to quit desiging websites if that happens.

Roo

Greg K's picture

He has: 2,145 posts

Joined: Nov 2003

I still design everything to fit in 800x600. I use 1280x1024 on my right monitor (19" flat crt) and 800x600 on my left monitor (15" reg crt).

Could you imagine still browsing with WebTV, that has less than 640x480! I used to design for those as well....

Here is another site I use to check statitstics:

http://www.thecounter.com/stats/ They gather information from the counters they provide. Lots of data, JavaScript, Java, Domains, OS, Browsers, Weekday, Resolution, ColorDepth

-Greg

He has: 152 posts

Joined: Jun 2004

i use 1450 X 1024

davidjaymz's picture

He has: 193 posts

Joined: Jul 2001

I think as new laptops come out with widescreen displays and bigger TFT's and people with more than one monitor we will see more and more "window" size having less and less to do with "screen" size... I have both my monitors set to 1600x1200 but have my firefox window at around 1024x768 I say around cos quite often i drag it a bit bigger or smaller depending what else I'm doing.

With designing websites I tend to make them for 1024*768 but so that they scale down to 800*600 and then above 1024*768 the content floats in the middle...

I think liquid or semi-scalable websites are the furture... and in repsect to the line length... I think about 70characters is the recomended length before things start to become unreadable...

Greg K's picture

He has: 2,145 posts

Joined: Nov 2003

Let us also not forget those who use a window at whatever size it opens up at. I went to someone's house once, they had a browser window that opened up about 1/4 the size of the screen at 800x600. I maximized it, they were so thankful I showed them how to do that.

I keep telling my boss that he has to forget the idea of what a screenshot will look like, especially vertically. We have some people here in the office that have like 3 different search toolbars on their browsers (I would love to just go and eliminate Outlook express and IE on these).

Ultimately when it comes to small windows and lower resolutions, you have to design for what you think the norm is, and figure anyone else is already dealing with webpages that don't fit right anyhow.

The one link I gave the URL to above, if you do sign up for a counter, you can have all the those stats just for your visitors only, which can help you better design for the majority of your sites visitors.

-Greg

He has: 152 posts

Joined: Jun 2004

ok that what happens on my laptop some stuff floats to the middle

They have: 30 posts

Joined: Mar 2001

davidjaymz, curious how you go about scaling your pages in the 800x600 to 1024x768 range, and then having them stay centered above 1024. Probably what I'm planning on doing for my next design.

Most major sites are either fixed width centered and fit in 800x600. Google News results are one of the rare exceptions.

davidjaymz's picture

He has: 193 posts

Joined: Jul 2001

body
{
text-align: center; /* ie centering*/
}

#pageWrapper
{
min-width: 740px; /* IE doens't understand this property. 800*600 */
max-width: 940px; /*1024*768*/
width: auto;

/* Page centering STANDARDS*/
margin-left: auto;
margin-right: auto;
text-align: left;
}
'

OK the above is what I basically do.

The CSS in the Body means that IE Centers the "pagewrapper" (Which holds all the subsequent DIVS and Content)

In the PageWrapper DIV I set the min width to be 740px (for 800*600 screens) Also all my images are setup for this size but they are done so that they fade into their background so when the page does grow the image still looks "good".
The max width tag means that the "pagewrapper" stops growing when it reaches 940px... (these tags don't work in IE but they degrade themselves nicely {wish IE would sort itself out}).

The remaining code is the "Standards" Version of the code for centering the pagewrapper...

Hope this helps and if you wanna see it working you can look at testing.davidjaymz.com which is my "test server" so don't shout at me if it breaks hehe

They have: 30 posts

Joined: Mar 2001

"OMG IT IS BROKEN!" Sorry, had to do it. Laughing out loud

Happy under Firefox, not IE. How far does back does this work in Netscape?

I've dabbled in non-table layouts before for legacy sake, thinking about diving in at this point being later 2004.

-B

davidjaymz's picture

He has: 193 posts

Joined: Jul 2001

Laughing out loud cheers...

As I said it works in IE it just doesn't stop shrinking or growing...

As far as I know it works in Netscape and Opera...

I need to sign up for browser cam to check in some other browsers but haven't got around to that yet.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.