Forum Moderators: open
Is your content wrapped in one encompassing <table> or <div>?
Also, how "fat" are your pages? These days, most would not need to worry about the artifacts of a slow loading page. If the page is loading slowly, then there are problems with the page and/or server. Most of the time, I find that people have wrapped their entire page inside a <table></table>. When you do this, the browser has to render everything within the <table></table> before the user gets to see it. That's where page architecture (structuring) comes into play. You have to break it up into logical sections, that way the user gets content on first visit while the rest of the <table>s and/or <div>s are being process by the browser.
While there are lots of pros and cons about using frames (mainly cons for the normal implementation) there are quite a few other things you can do to reduce the loading time:
most would not need to worry about the artifacts of a slow loading page
That is very dangerous way of thinking. Dial-up is still very much a reality. The availability of free dial-up (or at least much cheaper than broadband) makes it the most logical choice for many. In fact, it is the most logical choice for anyone who does not have use email/internet as a core of their business, or who only uses email occasionally to stay in touch with family and friends.
I would venture to say that dial-up is still used by a very large portion of users. Not being concerned about load time is not a viable solution until DSL of speeds reach at least 1.5Mbit for 85% of our visitors.
There is no reason for most graphics to be larger than 30K in size. There is also little reason for most pages to be larger than 100-150K in total size. Homepages and other likely landing pages should be the leanest.
So, I would like you counter the statement and say that unfortunately most still need to worry about whether pages are slow or not.
Most would not need to worry about the artifacts of a slow loading page.
Okay, I'll retract that statement. :)
Man, did I misinterpret this topic from the start. I'm going out to play!
Like the header or logo part of the web page doesn't move, only the content below or something like that. What do you call this technique and how do you go about implementing it? Thank you very much in advance.
As webdoctor points out above, it sounds like you are describing a frameset. This is where the web page is divided into multiple windows (sometimes visible, sometimes invisible). You click something in one window, and the content of another window changes. You can usually tell when you are in a frameset by watching the web address in your browser. If it doesn't change as you click on links, there is a good chance you are within a frameset.
I often see misconfigured Cache-Control headers also.
One useful tool which is not mentioned yet is
LiveHTTPHeaders Firefox extension [livehttpheaders.mozdev.org...]
Shows charset headers, MIME-types, cache related headers etc.
If those are wrong, accessibility and usability suffers.
But now "something completely different," maybe silly to ask:
What's the alternative to using tables for giving at least a minor structure to html pages? I'm very much a beginner to css. Does anyone have a relevant URL at hand?
I use tables from the very beginning of writing my html-pages and always thought, I was sort of a purist. Quite surprised, that among all these accessibility issues now gaining more and more importance, I found that tables without headings don't conform. The loading issue is also a nice side-effect. So what's the alternative?
[webmasterworld.com...]