Advertisements
Follow These Top 18 Secret Steps to boost your Blogger blog speed Super Fast
1. Remove default Widgets, JavaScript from Blogger
2. Remove the unwanted default CSS files
(a) Search For the tags:
<b:skin><![CDATA[
Code of Lines...........
...................................
]]></b:skin>
(b). Now Cut All your CSS codes' and paste that code inside Style Like below
<style type='text/css'>
Code of Lines...........
...................................
</style>
(c). And now place that code in your template as:
<b:skin><![CDATA[
]]></b:skin>
<style type='text/css'>
Code of Lines...........
...................................
</style>
(d). Replace following code
<b:skin><![CDATA[
]]></b:skin>
with:
<style type="text/css">
<!-- /*
<b:skin><![CDATA[*/]]></b:skin>
(e). Now your new code will looks like below. And make sure it should be there before </head> tag.
<style type="text/css">
<!-- /*
<b:skin><![CDATA[*/]]></b:skin>
<style type='text/css'>
All your CSS codes
</style>
(3). Remove Default Blogger widgets.js
Performing Above Steps The Default CSS files has been removed but .js files are still present there in Your Theme . To Remove That ...
Find: </body>
And replace it with following code:
<!--</body>--> </body>
4. Remove Extra Unwanted Widgets
5. Use a Better and Liightweight blogger Template
6. Optimize images
7. Use content delivery network (CDNs)
8. Remove background images
9. Avoid too many ads
11. Don't use Custom fonts
12. Compress all images
13. Limit number of posts on blogger homepage
14. Compress codes
15. How to test your blog’s speed
16. Use social images instead of buttons
17. Remove quickedit Blogger icons from loading
18. Eliminate render blocking Javascripts and CSS
Follow these Steps to remove the render blocking elements?
It can be done using a synchronous loading. You can Apply Asynchronous Loading in javascript code by putting tag async.
You can find Javascripts like below which has the following syntax.
<script src="Address" type="text/javascript"></script>
So to load Fast, All Script files must be loaded as Async and To do that, load script files async like following syntax.
<script src="Address" type="text/javascript" async></script>
0 Comments:
Post a Comment