Website Performance Tips for new Google Algorithms
As you know, Google includes website performance in its algorithms. I don’t know how much weight this factor has for SERPs but it counts.
If you are completely new to optimizing your website for speed, here are some tips from Yahoo:
http://developer.yahoo.com/performance/rules.html
You can check your site performance on this page:
http://site-perf.com/
It is really great tool as it shows not just the total download time but breaks it into files and processes.
To the point now. I had the CSS sprite URLs placed in an external stylesheet. Because of this, browser first loaded the page code, then the stylesheet, and then the sprites.
I have found a way to make browsers load anything at the very moment the page code finishes downloading. You just have to create an internal stylesheet with some dummy classes including the sprite URLs in the head section of the page. Example:
<style type="text/css">
.dummy{background:url('http://www.domain.com/img/sprite.png')}
</style>
You may say it’s not important but I was able to decrease the average loading times of my website by 20-30% by just using this method.
Hope this tip will help you to make a small SERP improvement completely free of charge.
Published by AdSense tricks
Related posts:
- Avoid getting banned by Google Adsense:Few Tips Google has now become a public property. Hence to maintain...
- 5 simple SEO tips that you should apply to your website or blog today Here are 5 simple SEO tips that you should apply...
- 5 SEO Tips – Get BackLinks For Free The following Tips will help you get more search engine...
- Google Page Speed Service Anyone heard of it yet? The Big Google wants to...
- ScrapeBox Tips and Tricks You will want to scrape, spam, and immediately check for...
Related posts brought to you by Yet Another Related Posts Plugin.