Forum Moderators: open
I think this is causing people to think my site is down or something, and they end up exiting before my site loads.
I've been watching my "partial content" logs and its quite a high number of people that exit before the site fully loads.
Anyone know what might be causing this and/or how to fix this? Might "preloading images" be a good idea?
Thanks!
Is your site layout in one large table.
ohh... yes :(
Solution is to make the graphics smaller on the page or do your layout in CSS or not wrap the page in a table.
thanks. :)
To change the subject a bit, what does "pre-loading images" do?
Basically i want to "give something the visitor to look at" so atleast they know the site is loading, and not staring at a blank page for 30 seconds until the site fully loads.
>>Basically i want to "give something the visitor to look at" so atleast they know the site is loading, and not staring at a blank page for 30 seconds until the site fully loads.
You could position an image or text with css that has a kill in the onload event in javascript to remove it. Not a real great option. I really don't know. Maybe someone else has a good solution.
[edited by: korkus2000 at 1:55 am (utc) on Nov. 26, 2002]
Basically i want to "give something the visitor to look at" so atleast they know the site is loading, and not staring at a blank page for 30 seconds until the site fully loads.
One thing you may be able to do without too much impact to your design is to break the table-wrapped page into two tables - One "above the fold" (the part that's visible without scrolling) and another one below that. With this approach, the visible screen will load faster, and the rest will follow later.
Jim
...break the table-wrapped page into two tables
...can be broken into a header, body and footer section
Thanks guys, appreciate the help. I'm pretty new to webdesign and HTML, so im not sure how to do this exactly, but atleast now i know i have some options and ways to fix this, and will keep these in mind for the next tutorials i read. Thanks. :)