Forum Moderators: phranque
My question is does anyone have any statistics to show a rough average for pages to download? Basically I'd like to know how long users will be prepared to wait for the homepage of my site to load completely..
I know this is quite a vague topic but any ball park figures (or where to look for them) would be greatly appreciated..
thanks,
luke
Well my 56 modem on average downloads about 4k per second, so I guess that agrees with that thread (posted way back) about the 40k sweet spot.
It sounds like a good target, because it seems lots of people still use modems.
But with using .css, the cache etc etc, you can get most of your "design template" cached as the surfer goes through the site, so load time becomes less of an issue. 40k or less and I'd find it acceptable IMO :)
If you are using tables for layout, break them up so that the 'header' table get's loaded first providing primary navigaion and an idea of what kind of site it is.
Avoid the 'one big table' trap, slow modems and dodgy PC's will take much longer to render than you could achieve with little optimixation.
As mentioned, CSS!! 'nuf said.
Nick
Now that I'm using CSS and absolute positioning, I've seen dramatic increases in performance. When I do use tables, I use them sparingly (only for forms and multiple columns within a <div>. Haven't progressed to that level of CSS expertise yet!
With CSS and Absolute Positioning, I can insure that my main content is viewable while the rest of the surrounding graphics and/or information is loading. I'm assuming the visitors are there for the content, not the graphics. If they see the content first and can start reading, the graphics will load momentarily.
I just did a quick check on 5 of the sites that I manage using NN4.73 and everything was perfect. In fact, the sites looked identical in each browser with the exception of a few borders here and there. Since I'm using the @import command, learned here at Webmaster World, I no longer have to limit my design techniques because of NN4.x. Now my NN4.x users get their own styled web site just for them, how special is that?
Absolute positioning if used properly is far superior to utilizing tables, from my perspective. I've managed to decrease the page download times considerably by utilizing a mix of Absolutely Positioned <div>'s and then tables for complex form elements.
If you are using a version of Netscape before NN4.x, then I'm not sure what you may be seeing. Even with sites not using Absolute Positioning, there has to be lots of issues!
#content {
position: absolute;
top: 50px;
left: 25%;
width: 70%;
}
Netscape mucks this up royally of course, but then if it's important it's not so tough to sniff out nn4 and serve the naughtly little bugger a seperate sheet.
...about the tables, I didn't ever notice much in performance either, i think you'd have to have a very old pc to notice.
Nick