Search

How Does Slow Load Time Affect You?

1 views

In a world where more and more households are connected to the internet, bandwidth is becoming an issue and brownouts have been predicted to occur in the next few years. With the strain on the infrastructure of the internet this makes having an efficient, fast loading website all that much more important.

The bottom line for most site owners though, is not the efficiency of the internet as a whole, but rather the financial sustainability of their websites. While there are many ways to make a site perform better in terms of converting visitors, one of the simplest, and probably most important aspects is simply to reduce the load time of your website.

If your site suffers from poor performance you could be missing out not only on sales and average visitor time on site, but also search rankings. Below I will discuss some of the negative impacts a slow loading site may experience, as well as a few ways you can correct the issue. In some cases, correcting the problem will cost you only some time, although it has the potential to really pay off in the long run.

Loss of Sales
Let’s pretend for a moment that search engines just didn’t exist and rankings didn’t matter. People are impatient - if your site takes too long to load, many potential customers will simply give up and go elsewhere.

Broadband connections are growing incredibly fast in the US; however, according to a study posted at Increased Pay per Click Costs
Only a few short months ago a post by Heather Lane at the
Loss of Organic Rankings
We know two things for a fact. Google factors in load times with AdWords, and Google focuses on an improved end user experience. As a result, I for one am convinced that a site’s load time does impact overall organic search rankings. While this is likely only a small piece of the very large algorithmic puzzle, it does play a part, and if you can speed up your site, you just may be able to move your rankings up a notch or two.

Speeding up your site is unlikely to move your site from page 8 all the way to page 1, but it may be enough to move up a few positions.

LunarPages
for example, has a $4.95 monthly plan with unlimited bandwidth per month.) If your hosting provider does put a limit on usage and you are using beyond the allocated max, you could be paying a fair bit in overage charges. If you fall into this category, optimizing your files to reduce bandwidth usages could save you a considerable amount of cash.


Issue: Un-Optimized Images
This is probably one of the biggest culprits out there impacting load time today. I have seen countless websites where image optimization is simply not done, resulting in significantly increased page load times. One of the biggest problems is when images are scaled down to fit the application.

Quite often webmasters will take a large image, and scale it down using the height and width attributes rather than physically resizing the image. What this does is then require the browser to load the full high resolution image, when it really only needs a fraction.

Let’s take this real world example. A client recently had a photo on their home page; the photo was 600 x 403 pixels, weighed in at 124.68 KB, and visually they had scaled the image to fit 473 x 317 pixels.

By resizing the original image to the desired dimensions, and then reducing the quality of the jpg to 70%, the end result was an image that looked identical on his website but weighed in at only 23 KB - that’s 101.68 KB smaller than the original. Using a simple Issue: Un-Optimized files
Another way you can speed up your sites load time is to have clean HTML, CSS, and other included files. Remove extraneous code from your files, and use CSS wherever possible. Every piece of old html code adds up in size, even if it doesn’t impact the visual site itself. I have seen many cases where links have been removed but the code remains accidentally, leaving something like:

link code

This code, while as tiny as it is, does contribute to an increase in load time (and in this specific example, could also be seen as spam by search engines).

If your site makes use of CSS, consider compressing it to save on load times. You can do this by grouping identical styles to save space. For instance,

p {
font-family:Arial, Helvetica, sans-serif;
font-size:12px
}

li {
font-family:Arial, Helvetica, sans-serif;
font-size:12px
}

can be compressed by grouping these two styles, reducing the coding by half:


p,li {
font-family:Arial, Helvetica, sans-serif;
font-size:12px
}

Again this may not seem like much, but when you add this up with all of the other little things, it can ultimately result in a significantly increased load time for the page as a whole.



Audio and video can also be compressed. If your site uses a fair bit of multimedia, see if you can compress these files a bit more than you have already. You may be able to save some load time here as well without impacting user experience.




Suggest a Correction

Found an error or have a suggestion? Let us know and we'll review it.

Share this article

Comments (0)

Please sign in to leave a comment.

No comments yet. Be the first to comment!