Latest Movie :
Recent Tricks

Add Floating Share Buttons Widget For Blogger Blogspot



This widget will allow your visitors to share your blog posts on social networks such as google+, facebook, twitter ...

The design is very attractive widget with animation from top to bottom and encourages readers to share your article easily by clicking on one of these buttons.
we spend now to install this widget


  • Go To Blogger > Design
  • Choose a HTML/JavaScript widget
  • Paste the following code inside it,
  • <style>
  • /*-------All Blogger Tools------------*/
  • #floatdiv {
  • position:absolute;
  • width:94px;
  • height:229px;
  • top:0;
  • left:0;
  • z-index:100
  • }

  • #mbtsidebar {
  • border:1px solid #ddd;
  • padding-left:5px;
  • position:relative;
  • height:220px;
  • width:55px;
  • margin:0 0 0 5px;
  • }
  • </style>


  • <div id="floatdiv">
  • <div id="mbtsidebar">
  • <table cellpadding="1px" cellspacing="0">
  • <tr>
  • <td style="border-bottom: 1px solid #E8E8E8; padding:5px 0 2px 0;">
  • <div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="" send="false" layout="box_count" show_faces="false" font=""></fb:like>
  • </td>
  • </tr>
  • <tr>
  • <td style="border-bottom: 1px solid #E8E8E8; padding:5px 0px;">
  • <g:plusone size="Tall" expr:href="data:post.url">
  • </g:plusone></td>
  • </tr>
  • <tr>
  • <td style="border-bottom: 0px solid #E8E8E8; padding:5px 0 0px 0;">
  • <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="allbloggertool1">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
  • </td>
  • </tr>
  • <tr>
  • <td style="border-bottom: 0px solid #E8E8E8; padding:0px 0 0px 0;">
  • <p style=" font-size:10px; text-align:center; color:#ddd;"><a style="color:#ddd;" href="http://all-blogger-tools.blogspot.com/" target="_blank">Widgets</a></p>
  • </td>
  • </tr>
  • </table>
  • </div>
  • </div>
  • <script type="text/javascript">
  • // JavaScript Document

  • <!--
  • /* Script by: www.jtricks.com
  • * Version: 20071017
  • * Latest version:
  • * www.jtricks.com/javascript/navigation/floating.html
  • */
  • var floatingMenuId = 'floatdiv';
  • var floatingMenu =
  • {
  • targetX: 0,
  • targetY: 300,
  • hasInner: typeof(window.innerWidth) == 'number',
  • hasElement: typeof(document.documentElement) == 'object'
  • && typeof(document.documentElement.clientWidth) == 'number',
  • menu:
  • document.getElementById
  • ? document.getElementById(floatingMenuId)
  • : document.all
  • ? document.all[floatingMenuId]
  • : document.layers[floatingMenuId]
  • };
  • floatingMenu.move = function ()
  • {
  • floatingMenu.menu.style.left = floatingMenu.nextX + 'px';
  • floatingMenu.menu.style.top = floatingMenu.nextY + 'px';
  • }
  • floatingMenu.computeShifts = function ()
  • {
  • var de = document.documentElement;
  • floatingMenu.shiftX =
  • floatingMenu.hasInner
  • ? pageXOffset
  • : floatingMenu.hasElement
  • ? de.scrollLeft
  • : document.body.scrollLeft;
  • if (floatingMenu.targetX < 0)
  • {
  • floatingMenu.shiftX +=
  • floatingMenu.hasElement
  • ? de.clientWidth
  • : document.body.clientWidth;
  • }
  • floatingMenu.shiftY =
  • floatingMenu.hasInner
  • ? pageYOffset
  • : floatingMenu.hasElement
  • ? de.scrollTop
  • : document.body.scrollTop;
  • if (floatingMenu.targetY < 0)
  • {
  • if (floatingMenu.hasElement && floatingMenu.hasInner)
  • {
  • // Handle Opera 8 problems
  • floatingMenu.shiftY +=
  • de.clientHeight > window.innerHeight
  • ? window.innerHeight
  • : de.clientHeight
  • }
  • else
  • {
  • floatingMenu.shiftY +=
  • floatingMenu.hasElement
  • ? de.clientHeight
  • : document.body.clientHeight;
  • }
  • }
  • }
  • floatingMenu.calculateCornerX = function()
  • {
  • if (floatingMenu.targetX != 'center')
  • return floatingMenu.shiftX + floatingMenu.targetX;
  • var width = parseInt(floatingMenu.menu.offsetWidth);
  • var cornerX =
  • floatingMenu.hasElement
  • ? (floatingMenu.hasInner
  • ? pageXOffset
  • : document.documentElement.scrollLeft) +
  • (document.documentElement.clientWidth - width)/2
  • : document.body.scrollLeft +
  • (document.body.clientWidth - width)/2;
  • return cornerX;
  • };
  • floatingMenu.calculateCornerY = function()
  • {
  • if (floatingMenu.targetY != 'center')
  • return floatingMenu.shiftY + floatingMenu.targetY;
  • var height = parseInt(floatingMenu.menu.offsetHeight);
  • // Handle Opera 8 problems
  • var clientHeight =
  • floatingMenu.hasElement && floatingMenu.hasInner
  • && document.documentElement.clientHeight
  • > window.innerHeight
  • ? window.innerHeight
  • : document.documentElement.clientHeight
  • var cornerY =
  • floatingMenu.hasElement
  • ? (floatingMenu.hasInner
  • ? pageYOffset
  • : document.documentElement.scrollTop) +
  • (clientHeight - height)/2
  • : document.body.scrollTop +
  • (document.body.clientHeight - height)/2;
  • return cornerY;
  • };
  • floatingMenu.doFloat = function()
  • {
  • // Check if reference to menu was lost due
  • // to ajax manipuations
  • if (!floatingMenu.menu)
  • {
  • menu = document.getElementById
  • ? document.getElementById(floatingMenuId)
  • : document.all
  • ? document.all[floatingMenuId]
  • : document.layers[floatingMenuId];
  • initSecondary();
  • }
  • var stepX, stepY;
  • floatingMenu.computeShifts();
  • var cornerX = floatingMenu.calculateCornerX();
  • var stepX = (cornerX - floatingMenu.nextX) * .07;
  • if (Math.abs(stepX) < .5)
  • {
  • stepX = cornerX - floatingMenu.nextX;
  • }
  • var cornerY = floatingMenu.calculateCornerY();
  • var stepY = (cornerY - floatingMenu.nextY) * .07;
  • if (Math.abs(stepY) < .5)
  • {
  • stepY = cornerY - floatingMenu.nextY;
  • }
  • if (Math.abs(stepX) > 0 ||
  • Math.abs(stepY) > 0)
  • {
  • floatingMenu.nextX += stepX;
  • floatingMenu.nextY += stepY;
  • floatingMenu.move();
  • }
  • setTimeout('floatingMenu.doFloat()', 20);
  • };
  • // addEvent designed by Aaron Moore
  • floatingMenu.addEvent = function(element, listener, handler)
  • {
  • if(typeof element[listener] != 'function' ||
  • typeof element[listener + '_num'] == 'undefined')
  • {
  • element[listener + '_num'] = 0;
  • if (typeof element[listener] == 'function')
  • {
  • element[listener + 0] = element[listener];
  • element[listener + '_num']++;
  • }
  • element[listener] = function(e)
  • {
  • var r = true;
  • e = (e) ? e : window.event;
  • for(var i = element[listener + '_num'] -1; i >= 0; i--)
  • {
  • if(element[listener + i](e) == false)
  • r = false;
  • }
  • return r;
  • }
  • }
  • //if handler is not already stored, assign it
  • for(var i = 0; i < element[listener + '_num']; i++)
  • if(element[listener + i] == handler)
  • return;
  • element[listener + element[listener + '_num']] = handler;
  • element[listener + '_num']++;
  • };
  • floatingMenu.init = function()
  • {
  • floatingMenu.initSecondary();
  • floatingMenu.doFloat();
  • };
  • // Some browsers init scrollbars only after
  • // full document load.
  • floatingMenu.initSecondary = function()
  • {
  • floatingMenu.computeShifts();
  • floatingMenu.nextX = floatingMenu.calculateCornerX();
  • floatingMenu.nextY = floatingMenu.calculateCornerY();
  • floatingMenu.move();
  • }
  • if (document.layers)
  • floatingMenu.addEvent(window, 'onload', floatingMenu.init);
  • else
  • {
  • floatingMenu.init();
  • floatingMenu.addEvent(window, 'onload',
  • floatingMenu.initSecondary);
  • }
  • //-->
  • </script>

  • Replace allbloggertool1 with your Twitter username.
    PS: If you have already added the Google +1 Button somewhere in your blog then you need to add this code Just above
    </head>

    <script src='http://apis.google.com/js/plusone.js' type='text/javascript'> {lang: &#39;en-US&#39;} </script>

    Now you are done.

    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.


    New Like and Send Buttons of facbook for blogger


     Like and Send Buttons




    In this tutorial we will see how to add like and send buttons on your blogger blog.
    This code combined the Like and send button into a single plugin, making it more easy to add both the buttons with a single code.
  • Go To Blogger > Design > Edit HTML
  • Click "Expand widgets templates box"
  • Search for <data:post.body/>
  • and now if you wish to add the plugin just below your post titles then add the giant code below just above <data:post.body/> or if you wish that the plugin may appear at the end of your posts then paste the following code just below <data:post.body/>

  • <div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script><fb:like href="" send="true" layout="button_count" width="450" show_faces="false" font=""></fb:like>

  • Save and you are done.
    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.

    Best Freelancing Website To Make Money From Home


    10 Best Freelancing Website



    Freelancing is make money if you work for people online who want a certain job done.
    the skill-set will be yours to input, but we can provide you with a list of the top platforms where you can find jobs. These are freelancing websites that happen to be some of the best. Now, every freelancing website will tell you it's the "number one" freelancing website, but don't you fall for that. Leave the job of picking the best such sites up to us.

    1. Elance

    elance is the best freelancing website without a doubt. It is a U.K based website that started in 1998. Not only is it the oldest and most popular, but is also the most highly paying website. Contractors are looking for their work to be done professionally, and they'll pay good money for it. No matter what sort of freelance work you're looking for, you'll most probably find it here. There are more than 1.5 million contractors registered with Elance! And they post more than 60k jobs per month!
    Elance
    So many job options, and Elance's reliability and surety of payment via various methods verily make it the best freelancing website in the world! Elance does not charge you anything for signing up. But there is a paid package that unlocks many privileges for you. But my advice is, get a free membership, and work your way into the premium one.

    2. oDesk

    oDesk is number two only because it isn't just as well known as Elance. But I don't think that's fair to the site. Quality-wise, it is one of the best websites. You can look for any sort of work at oDesk. I personally have some writing job experience at oDesk, and it was amazing. I was a beginner, and I didn't know my way around. oDesk made it so easy for me. And I got picked for the job so easily that I was amazed.
    oDesk
    oDesk has all the features that Elance has. But there's got to be a reason why it isn't number one itself, right? Well, there is one. oDesk is slightly lower paid than Elance. Average rates for the same kind of jobs are lower on oDesk than on Elance, but still higher than many other websites. It's a slight difference though. Apart from that, oDesk is great. Indeed a must try for beginners.

    3. Freelancer

    like Elance, Freelancer is also one of the oldest freelancing platforms. It is very popular, and has more than 3.6 million users! And it has a total job count of more than 1.6 million! It is a good paying website, with most of the Elance and oDesk features. It has some of the best payment options, which is useful for people who don't have PayPal access in their country.
    freelancer

    4. ScriptLance

    Now here's an underdog that's made its way into the top 5. And rightly so! Compared to Elance, it's a very small platform. But it is dedicated to the Programming and IT field. So if you are looking for coding or other computer-related jobs, then this might be the thing for you! The fact that this is a small website makes it easier for you to get a job!ScriptLance charge only a 5% on all your earnings, which is the lowest by far! Plus, there's no sign up or registration fee. Better yet, it has an affiliate program that gives you bonuses whenever one of your friends join the site through you.
    ScriptLance

    5. Fiverr

    Fiverr is a different sort of Freelancing website. For one, it's the workers who post jobs they are willing to do, and not the hirers posting what they want done. For another, jobs can only cost $5, one dollar from which goes to Fiverr.. Be that as it may, Fiverr is a very unique website, probably one of its kind. It is a micro-freelancing site, which has mini-jobs called gigs. Workers post gigs they are willing to do. Contractors then order that gig. It is best for getting your freelancing career started. Not only will you find professional jobs here, you will also find some of the most ridiculous jobs and skids you ever saw in your life! It's a must try website, especially for beginners. So get ready to be amazed by Fiverr!
    fiverr

    6. Guru

    I think the name speaks for itself here. Guru really is a freelancing platform guru. It is also one of the most popular freelancing websites like Elance or oDesk. And it has many similar features. The only downside though, is that if you have a free account with them, then you get a very limited number of bids you can use per month. Kind of a mood killer for such a big website. But overall, it is a very good website. You can always try out other sites while working on this one. So sign up now and utilize your bids!
    Guru

    7. vWorker

    vWorker is another very reputable freelancing website. It is best known for its highly scrutinized screening process, which ensures that you only get jobs relevant to your own skills. This saves a lot of time and effort, and if you want to hire, it will provide you with highly relevant people who can do the job well. A must try for all freelancers.
    vWorker

    8. 99 Designs

    This is a design-oriented freelancing website. Contractors post design contests of various types, such as logo designing, page designing etc. Freelancers need to submit their designs. The best design wins the contest, and bags a lot of money. This is sort of time consuming, and a bit risky especially for new freelancers. But if you are a good artist, and if you have the potential, then you can walk off with lots of money in your pocket. Interested?
    99 Designs

    9. GetACoder

    As the name suggests, this website is related to programming, web development, and other IT related jobs. This is one of the oldest such websites. It has thousands of active contractors. So if you are into programming and such stuff, then this might be the thing for you. It pays really well too.
    GetACoder

    10. crowdSPRING

    This website is very similar to 99 Designs. It works in a similar way too. But it pays more! Only problem though, is it is somewhat hard to get selected because there is a lot of competition. Still, it made it to out top 10 list.
    crowdSPRING
    Well, there goes out list of the top 10 freelancing websites! If you've got questions regarding freelancing, then feel free to ask in the comments section below. It's good to see you guys again :). Have a good day :). Oh, and do share your freelancing experiences with us. If you quit your job for freelancing, did you find freelancing worth the risk? And if you know of any better freelancing website, then do tell us about it. Cheers!
    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.

    Superb Advanced Blogger Template




    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.

    Random Posts Widget For Blogger free


    random posts Random Posts Widget For Blogger
    If you’re using Blogger (blogspot), you can see that there is no random posts widget for Blogger blogs. So I make this widget for this purpose. The widget will show a number of posts (which can be modified) in a random order. This is a good way for Blogger users to suggest more content to visitors.

    To add random posts widget to Blogger, go to “Dashboard” → “Layout”, click on “Add a gatget” and select type HTML/Javascript. Then paste the following code into the widget content:
    1. <div id="random-posts"></div>
    2. <script type='text/javascript'>
    3. function getRandomPosts(json) {
    4. var maxEntries = 10;
    5. var numPosts = json.feed.openSearch$totalResults.$t;
    6. var indexPosts = new Array();
    7. for (var i = 0; i < numPosts; ++i) {
    8. indexPosts[i] = i;
    9. }
    10. indexPosts.sort(function() {return 0.5 - Math.random()});
    11. if (maxEntries > numPosts) {
    12. maxEntries = numPosts;
    13. }
    14. var container = document.getElementById('random-posts');
    15. var ul = document.createElement('ul');
    16. for (i = 0; i < maxEntries; ++i) {
    17. var entry = json.feed.entry[indexPosts[i]];
    18. var li = document.createElement('li');
    19. var a = document.createElement('a');
    20. a.title = entry.title.$t;
    21. for (var j = 0; j < entry.link.length; ++j) {
    22. if (entry.link[j].rel == 'alternate') {
    23. a.href = entry.link[j].href;
    24. break;
    25. }
    26. }
    27. a.appendChild(document.createTextNode(entry.title.$t));
    28. li.appendChild(a);
    29. ul.appendChild(li);
    30. }
    31. container.appendChild(ul);
    32. }
    33. </script>
    34. <script src='/feeds/posts/summary?alt=json-in-script&callback=getRandomPosts&max-results=999999' type='text/javascript'></script>
    To change the number of random posts will be shown, change the value of maxEntries in the 4th line (the default value is 10).
    1. var maxEntries = 10;
    After that, save the widget and refresh your blog, you’ll see the random posts right in your blog.
    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.



    Install Syntax Highligher In Blogger


    syntax highlighter Howto Install SyntaxHighligher In Blogger
    SyntaxHighlighter helps a developer/coder to post code snippets online with ease and have it look prettySyntaxHighlighter is developed in Javascript by Alex Gorbatchev. SyntaxHighlighter is the most popular script for syntax highlighting and widely used by many blogs, websites. It has many wonderful features like: view source code in plain text, copy to clipboard, valid XHTML, … SyntaxHighlighter supports many languages and has bunch of themes.

    Install SyntaxHighlighter In Blogger

    Installing SyntaxHighlighter In Blogger is easy, just open your template and paste the following code right before the close tag </head>:
    1. <link href="http://alexgorbatchev.com/pub/sh/current/styles/shCore.css" rel="stylesheet" type="text/css"></link>
    2. <link href="http://alexgorbatchev.com/pub/sh/current/styles/shThemeDefault.css" rel="stylesheet" type="text/css"></link>
    3. <script src="http://alexgorbatchev.com/pub/sh/current/scripts/shCore.js" type="text/javascript"></script>
    4. <script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushCss.js" type="text/javascript"></script>
    5. <script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushJScript.js" type="text/javascript"></script>
    6. <script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushPhp.js" type="text/javascript"></script>
    7. <script src="http://alexgorbatchev.com/pub/sh/current/scripts/shBrushXml.js" type="text/javascript"></script>
    8. <script language='javascript'>
    9. SyntaxHighlighter.config.bloggerMode = true;
    10. SyntaxHighlighter.config.clipboardSwf = 'http://alexgorbatchev.com/pub/sh/current/scripts/clipboard.swf';
    11. SyntaxHighlighter.all();
    12. </script>
    SyntaxHighlighter supports many languages, each language has its own javascript file. To install syntax highlighting for more languages, you can view list of supported languages, get the javascript’s file name and include it with the following syntax:
    1. <script src="http://alexgorbatchev.com/pub/sh/current/scripts/LANGUAGE_FILE_NAME.js" type="text/javascript"></script>
    There’re many themes for SyntaxHighlighter, too. To change theme, go to the homepage and get the file name for theme and change this line:
    1. <link href="http://alexgorbatchev.com/pub/sh/current/styles/shThemeDefault.css" rel="stylesheet" type="text/css"></link>
    into:
    1. <link href="http://alexgorbatchev.com/pub/sh/current/styles/THEME_FILE_NAME" rel="stylesheet" type="text/css"></link>

    Howto Use SyntaxHighlighter

    To highlight code, just wrap it into a pre tag with the following syntax:
    1. <pre class="brush: js">
    2. // Your code here
    3. </pre>
    Notice the class="brush: js". It defines the language for syntax highlighting, in this situation: JS – Javascript. To know more about brushes, you can see a list of them on the homepage.
    The second important note is the code inside pre tag must be escaped (< and > must be changed into &lt; and &gt;). There’re many online tools for blogger to do that, one of them is Code Converter.
    Using pre tag is the traditional way. Another way to highlight code is using script tag:
    1. <script type="syntaxhighlighter" class="brush: html"><![CDATA[
    2. // Your code here
    3. ]]></script>
    The benefit of this method is ability to place virtually anything inside the CDATA without having to escape anything, so this allows for a straight ‘cut and paste’ experience from your favorite text editor.
    If you need more information about SyntaxHighlighter or more configuration, please go to thehomepage. You can see SyntaxHighlighter in action here, at Deluxe Blog Tips. It’s really pretty and I’m feel good with it.
    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.



    Auto Readmore Script Improved for blogger


    The auto readmore script is first created by AnhVo at vietwebguide.com (the website is not available now). Based on this idea, I create a new auto readmore script with more options:
    1. Add default thumbnail image when posts don’t have any images.
    2. Option to turn off auto readmore for some first posts.
    3. Option to turn on/off auto readmore for homepage and label page.

    How to install

    Go to Dashboard → Layout → Edit HTML, check Expand Widget Templates. Find </head> and insert this code before:
    1. <script type="text/javascript">
    2. var summaryConf = {
    3. showImage: true,
    4. imgFloat: 'left',
    5. imgWidth: 120,
    6. imgHeight: 90,
    7. defaultThumb: 'http://rilwis.googlecode.com/svn/trunk/hontap/images/no-thumb.jpg',
    8. words: 65,
    9. wordsNoImg: 80,
    10. skip: 0,
    11. showHome: true,
    12. showLabel: true
    13. };
    14. </script>
    15. <script type="text/javascript" src="http://rilwis.googlecode.com/svn/trunk/blogger/summary.min.js"></script>
    After that, find this line in your template:
    1. <data:post.body/>
    Replace with:
    1. <span expr:id='data:post.id'><data:post.body/></span>
    2.  
    3. <b:if cond='data:blog.pageType == "index"'>
    4. <script type='text/javascript'>summary("<data:post.id/>")</script>
    5. <b:else/>
    6. <b:if cond='data:blog.pageType == "archive"'>
    7. <script type='text/javascript'>summary("<data:post.id/>")</script>
    8. </b:if>
    9. </b:if>
    That’s all! You can refresh your blog and see how it works.

    How to change options

    The options are very easy to change. It’s declared in the first part of script above. These are their meanings:
    showImage: do you want to show thumbnail? If yes, set it true, if no, set it false.
    imgFloat: there are 3 values of this option: 'left' – float thumbnail to the left, 'right' – float thumbnail to the right and 'no' – no thumbnail float. Note the quotes around values.
    imgWidth and imgHeight: thumbnail size.
    defaultThumb: default thumbnail URL, used when posts don’t have any images.
    words vĂ  wordsNoImg: number of words shown in summary when have thumnail and no thumbnail.
    skip: skip some first posts, don’t apply auto readmore for them. If this option is set to 0, all posts are applied auto readmore.
    showHome and showLabel: allow or not auto readmore for homepage and label page. true is allowed, false is not.
    Adjust these options to fit your blog and enjoy!
    We have great collection of Best tricks and tutorials, Bloggingtrainings.blogpsot.com is a Blog Providing with Blogger widgets, help, blogger tips, blogger tricks, hacks, Blogger Gadgets,Plugins and Blogger resources with great skills and templates.practical SEO Tips and all things Blogging,is about Blog tricks & tips, Traffic generation, Backlinks, Search engine optimization, Web designing, E money, Social media, Facebook tricks,Blogging Discussion, Tips & Tricks,logging tips, tricks, how-tos, news, tools and resources, bloggingtrainings.blogspot presented in easy to understand tutorials.Keep visiting us if any links is not working or you want sme more help, then keep looging at bloggingtrainings.blogspot.com.or contact us 0323-7591466.


     
    Support : Creating Website | Johny Template | Mas Template
    Copyright © 2011. Blogging Trainings - All Rights Reserved
    Template Created by Creating Website Published by Mas Template
    Proudly powered by Blogger