6 Ways to Speed Up Your Site

The load time of websites is one of the most important factors affecting its usability; most Internet users will just skip a site altogether if it fails to load within a couple of seconds. Below you will find the summary of the “Speed Up Your Site” series. Those are simple yet effective ways to make sure that your website is running fast. You can click on each point to read the article with comments from the readers.

  1. Optimize Images: always use the “Save for the web” feature included on image editing software. Images represent the heavier load on virtually any website so make sure you are optimizing them. Alternatively you can also turn to an online image optimizer.
  2. Image Formats: apart from optimizing images it is important that you choose the right format. JPEG format is suitable for photographs or true-color images. The GIF format should be used with flat-color images like logos or buttons. PNG works very similar to GIF but it supports more colors.
  3. Optimize Your CSS: most websites are designed with CSS nowadays. Make sure to aggregate and clean your CSS. CleanCSS is an online tool that will merge similar selectors, remove useless properties and remove the whitespace from your code.
  4. Use a Slash on Your Links: when a user opens a link on the form “http://www.domain.com/about” the server will need to figure what kind of file or page is contained on that address. If you include a slash (/) at the end of the link the server will already know that this is a directory page, reducing the load time of the site.
  5. Use the Height and Width Tags: many people forget to add the Height and Width tags on image codes. Those tags will make sure that the browser knows the size of the image before loading it. The result is that it will reserve a spot for the images while loading the rest of the page, speeding up the whole process.
  6. Reduce the HTTP Requests: when opening a web page every object (images, scripts and the line) will require a round trip to the server. This latency can add several seconds to the load time of your site. Make sure to reduce the number of objects and to combine CSS files and scripts together.

74 Responses to “6 Ways to Speed Up Your Site”

  1. Collis on April 16th, 2007 5:03 am

    Wow I didn’t know that about the slash on links…

    A couple more for you:

    Use table layouts as sparingly as possible, CSS div layouts are much lighter on file size

    Reduce your Javascript. A lot of JS Libraries come packed with heaps of unnecessary code that you probably aren’t using

    Design a site to use repeating images and background colours to substitute for heavy image layouts. Note that this doesn’t mean necessarily compromising design quality, only that when you start designing you are already thinking about this.

    Anyhow, great post series!

  2. Daniel on April 16th, 2007 5:09 am

    Collis, good tips you have there, thanks for sharing!

    Using fancy backgroung images intead of simple background colors is a common mistake, I agree.

  3. Genevieve Netz on April 16th, 2007 5:25 am

    Great suggestions. I knew most of them, but the reminder is good. I should start adding the height and width parameters instead of just accepting the IMG tag that Blogger produces.

  4. egon on April 16th, 2007 5:31 am

    Another thing to help make it LOOK like your page is loading faster is to move “pretty” javascript to your footer instead of the header, that way your content loads first.

    Also, I suggest removing anything that is sitting on somebody elses server. If that server has high load and slow load time, so will yours, and that sucks.

    Image optimizing is important, and I highly recommend the Dynamic Drive optimizer that you linked to. I use it all the time.

  5. Daniel on April 16th, 2007 6:05 am

    egon, making the content load before the javascripts is a good tip. Actually the best sites are designed with that principle in mind, the content is the first thing to load so the user can start reading.

  6. Manta SEO Solutions on April 16th, 2007 6:44 am

    Good tips Daniel, also some good ones in the comments.

    egon mentioned not using content directly from other sites, rather host the content on your server (your host).

    Another important factor is to look at your domain host itself. I know it’s sometimes difficult to compare hosts, but test the speed of your site on your host. Cheap hosting may become costly.

  7. Brian Auer on April 16th, 2007 7:15 am

    These are great little tidbits that can be easily implemented. I’ve started doing some of these things lately, especially with the image height and width tags. I’ve got a photography blog and nearly every post has one or more photos in it, so this is pretty important.

    Another thing I did recently was change the layout of my div elements. First, I placed each div by absolute positioning within another “entire page” div so they show up and don’t move around as content loads.

    The other thing I did was move the content div above (in the code) the sidebar divs. Since I used absolute positioning, it didn’t effect the actual layout. I don’t know if this is good practice or bad practice, but it makes the content load first, then the sidebars. Plus I thought I heard somewhere that search engines like to see the content near the top of the page — but I may be entirely wrong on this. Somebody let me know if this was a dumb move.

  8. Brian Auer on April 16th, 2007 7:16 am

    Oops, I should have read all the comments a little more carefully. Content first — good.

  9. Arpit Jacob on April 16th, 2007 7:22 am

    I find that having too many web analytics slows the site down. Try to use only 1-2

  10. Daniel on April 16th, 2007 7:22 am

    Manta, yeah the hosting provider plays a very important role on the overall speed. But that is not something you can change overnight :) (actually you could… hmmm).

  11. Roberto Alamos on April 16th, 2007 11:28 am

    Another 2 things you can do to optimize your load time when using javascript are:

    1) Sometimes you just can’t put all your javascript in your footer (for example when using adsense or things in that line). For those times use the ‘defer’ attribute. If true, it tells the browser to execute the javascript code after the body of the page was interpreted and rendered.

    Example (hope it will be shown):
    <script src=”script.js” type=”text/javascript” defer=”defer”></script>

    2) Use optimized versions of your javascript libraries or optimize them yourself. A lot of good javascript libraries put at your disposition an optimized version that comes without comments, with a lot less spaces, less characteres, etc. If your library doesn’t have an optimized version, you can optimize it by “crunching” it, i.e. do all the things optimized versions of javascript libraries have.

    How to crunch? Here’s the explanation and how to do it: http://www.brainjar.com/js/crunch/

  12. Jonathan-C. Phillips on April 16th, 2007 1:16 pm

    Great list, i learned something (i love that!), i didn’t know that adding a / at the end would help reduce loading time, makes sense. I use cleancss all the time, it’s a real time saver.
    Thanx for sharing this list Daniel. ;)

  13. Olliemag on April 16th, 2007 2:09 pm

    Awesome. Thanks for the good ideas.

  14. markus941 on April 16th, 2007 2:10 pm

    Pretty solid tips. Consolidating javascript is a good idea.

    I would add Number 7 - speed test it

  15. shrike on April 16th, 2007 2:13 pm

    These lists should always include turning on HTTP Compression.

    This is probably the best but least used option for speeding up web sites. It increase performance by a factor of 4-5 depending on the site. One needs to be a little care full as older browsers do not support but in general especially if a site is internal turn this on.

    And to reply to the obvious retort :-):
    No it does not slow down the web server in most cases. The time saved by pushing smaller packets through the web server, ability to cache more and the network card more than compensate. It also works well with dynamic sites.

  16. Michal on April 16th, 2007 2:30 pm

    One of the most important aspects for php sites is good coding, especially the way you process database queries. Try use as little as possible.

  17. mark on April 16th, 2007 2:38 pm

    Great tips! Another often overlooked (and obvious) point is keeping in mind the amount of content per page. Even if the images are optimized, having 20 entries or more per page can really slow down the load time of your average blog/site. Pagination helps a lot with this.

  18. Armen on April 16th, 2007 6:02 pm

    I had no idea about the ending slash either. Thanks Daniel.

    Another thing bloggers should consider, is their initial theme choice. Some themes are slow to load even as a demo with hardly any content. That’s a good sign to not even consider using it, inspite of what it looks like.

  19. Eli on April 16th, 2007 7:44 pm

    You’re not getting a lot of friendly feedback from the people over at Digg.

    They don’t seem to like positive comments, they think they’re fake :)

  20. Navdeep on April 16th, 2007 8:56 pm

    Good ideas…

  21. Chris on April 17th, 2007 2:56 am

    How about making sure your html is compressed.

    I use wp-cache2 and this simple .htaccess hack got the page load time reduced by about 70%
    http://blog.iloaf.com/2007/03/.....s-quicker/

    Also the whole html page renders at once rather than during the load so it appears “snappy” in the browser too.

  22. code on April 17th, 2007 11:19 am

    Great list — but “Use a Slash on Your Links” is so insignificant, it’s the odd man out on this list.

    Besides, it only improves speed if you are actually linking to a static file — if you’re working with Servlets for example, there is no performance increase. Maybe I’m the only one working with Servlets. :)

  23. Daniel on April 17th, 2007 12:22 pm

    code, websites using apache will reduce a round trip with the / at the end of links. Sure it is nothing major for a single user opening that site, but if you consider popular websites with 100s of hits per minute than it sure help!

    Thanks for commenting.

  24. Review Boss on May 5th, 2007 9:16 am

    Hi,

    Thanks for the great tips. I’m just wonndering if there is any method or tools to optimize external javascript codes. External JS codes really killing load time of a webpage.

  25. Jeff on May 19th, 2007 1:57 am

    What about skipping all that and requiring all users to have a dedicated t1 line for their internet connection?

  26. Complete Seo Tool on July 4th, 2007 6:52 am

    Great Tips Denial ! Its all about general website , do u have any plan to write something about optimization of Image related sites.

  27. AskApache on August 9th, 2007 10:05 am
  28. Book Of Tips on September 11th, 2007 5:22 am

    If you want lots and lots of tips, checkout http://BookOfTips.BlogSpot.Com

  29. Book Of Tips on September 11th, 2007 5:24 am
  30. batter store on October 3rd, 2007 1:48 am

    Well, good idea

  31. Speeding Ticket Lawyer on November 9th, 2007 4:45 pm

    Your tips on speeding up your site are dead on, thanks for the info.

  32. Website Promotion - Frederrick on November 30th, 2007 2:13 am

    Very useful tips and the methods suggested are effective and workable. Loading time is important as most of Internet users today are still on dial ups.

  33. Aneesh on December 3rd, 2007 5:21 am

    My blog is loading pretty slow especially because of the javascripts that i use..Thanks for the tips..

  34. jakes on December 3rd, 2007 6:20 am

    thanx for your good ideas…..really helpful in future..

  35. snowgirl on December 17th, 2007 10:49 pm

    this is nice tuts

  36. Web design tips tutorials on December 27th, 2007 3:37 am

    Im not sure about this certain “rule” or tip. Is it true that having your CSS on a totally new file is better?

    As in, reducing your main .html file by separating the CSS section on a stylesheet file on its own..

  37. Richard on February 3rd, 2008 3:35 am

    Call me an idiot? Where am I supposed to add the slash(/)/

    at the end of the image Ie dog.gif/

    Trouble with all the tips everyone always writes is that they are targeted at people that know website design etc

    Help would be great…

    Regrads

    Richard

  38. seo traffic tips on February 4th, 2008 9:19 am

    Thanks for these great tips.!

  39. one million euro blog on May 11th, 2008 8:58 am

    very usefull post really.
    Thanks alot.

  40. will on June 10th, 2008 11:50 pm

    One thing not mentioned is memory preasure on a webserver. Most servers host 100’s of websites & if yours is not one of the most popular then your code will not be in memory.
    A popular method to get around this is to ping your web site. This will keep the site in the servers memory and keep your site responsive. I use a free service called Site Stalker (http://sitestalker.prestigedevgroup.com). They also collect stats on how often your site has outages and average response times.

    -Will

  41. Tait on July 2nd, 2008 5:04 pm

    Thanks Will, I check out Site Stalker and found out my web server performance was terrible. They had outtages every night for over an hour. I also noticed since my sight is now getting stalked that the performance has improved when first going to my site!

  1. Steve Miller’s Web Sites of Interest » links for 2007-04-17
  2. Sitenizi hızlandırmanın 6 yolu | Livetr.org
  3. Seis dicas para deixar o seu site mais veloz | TNow
  4. Sitenizi hızlandırmanın 7 yolu | Kudret.Gokyigit
  5. candy coated rose petals » weekly roundup
  6. dfuimuo in
  7. 10 Ways To Improve Your Readers’ Experience
  8. 6 способов ускорить загрузку Вашего сайта » Блог проекта W3School.ru - школы создания сайтов
  9. 网站提速6步骤 at 无知博客
  10. Blog Setup: 40 Practical Tips
  11. All in a days work…
  12. 7 Blogging Tips for Beginners : -| Life Rocks! 2.0 |- Technology, Internet, Blogging, Life and Thoughts
  13. 1001 Lists To Read Before You Die | Terabell - technology, law, programming and a laugh
  14. The 1001 list of Quality Reads -- you may want to read before you die
  15. I Feel The Need For Speed! Take Two - Untwisted Vortex
  16. How to Speed up Seobook.Com by 37% in One Easy Step
  17. Usability and Navigation: Improve Your Site Packaging » Net Business Blog
  18. 6种方法让你的网站加速 | IT江湖|Seeker Blog
  19. 7 Blogging Tips for Beginners | AAh Oh Yes
  20. blog | lsb web design and search engine optimization, nashville tennessee.
  21. 24h Blog » Blog Archive » 10 Ways To Improve Your Readers’ Experience
  22. 10 Ways To Improve Your Readers’ Experience
  23. BlogoSquare | 3 really simple ways to speed up your blog
  24. Aprenda a deixar seu site ou blog mais veloz « Acqua Deskmod 2008
  25. Web Content Thursday: If You’re Losing Readers The Cause Might Not Be Your Writing
  26. 网页提速的6种方法 | 精品博客
  27. 建博40个实用技巧 | 精品博客
  28. Blogging Tips for Beginners | scrapur.com
  29. My Agent Of Value » Blog Archive » 6 Ways to Speed Up Your Site
  30. 6招技巧提升网站速度(上) | SEO 部落格与網站優化 | 分享SEO技巧
  31. 6招技巧提升网站速度(下) | SEO 部落格与網站優化 | 分享SEO技巧
  32. 提升你的网站速度的6种方法 | 飞鱼的声纳
  33. Boostez l'affichage de votre site en appliquant 5 règles simples. | blog de calii.fr

Got something to say?





Sponsors

Directory Submissions Premium WordPress Themes Why I recommend Doreo Hosting Maximize Your Rankings Online Invoicing For Freelancers Grow Your Internet Business Fast Click here to get The Blog Profits Blueprint

Popular Articles

Recent Articles

Subscribe via E-Mail


The Blogging Idol