Showing posts with label Recent Post Display. Show all posts
Showing posts with label Recent Post Display. Show all posts

Friday, May 14, 2021

How to Replace Older Posts and Newer Posts Links with Blogger Post Titles

 If you have ever visited a WordPress blog, you might have noticed that the blog pager on these blogs displays the actual post titles, not just links to the older and newer posts that you find at the bottom of your Blogger blog. This links are parts of the so-called blog pager which helps readers navigate between pages and posts.


If you want to increase your page impressions, one of the ways is to replace the older/newer posts links with the Blogger post titles.

Read More

Saturday, May 13, 2017

Display Last Modified Date of Your Posts in Blogger

Blogger is being used by many people for different reasons. Some use it for blogs, whereas others use it for business purpose. When you publish a new post or story, often times you might need to make updates in the future. In this article, we will show you how you can display last modified or updated date to let your users know when your post was last updated. We will highlight how to display last modified date of your post in Blogger.

Read More

Thursday, September 1, 2016

How to Displaying Recent Post Titles by Label in Blogger

How to list recent post titles by label

Do you want to list all or your most recent posts according to categories/labels? Well then, you’ve come to the right tutorial. To do follow below steps


1. Installing the first list

  1. Go to Layout Design > Page Elements.
  2. Click Add A Gadget.
  3. In Add A Gadget window, select HTML/Javascript .
  4. Enter a label as the title of your widget.
  5. Copy the code below and paste it inside the content box.
  6. Click Save.

<!-- Recent Posts by Label Start -->

<script type="text/javascript">
function recentpostslist(json) {
 document.write('<ul>');
 for (var i = 0; i < json.feed.entry.length; i++)
 {
    for (var j = 0; j < json.feed.entry[i].link.length; j++) {
      if (json.feed.entry[i].link[j].rel == 'alternate') {
        break;
      }
    }
var entryUrl = "'" + json.feed.entry[i].link[j].href + "'";//bs
var entryTitle = json.feed.entry[i].title.$t;
var item = "<li>" + "<a href="+ entryUrl + '" target="_blank">' + entryTitle + "</a> </li>";
 document.write(item);
 }
 document.write('</ul>');
 }
</script>
<script src="YOUR_BLOG_URL/feeds/posts/summary/-/YOUR_LABEL?max-results=SHOW_HOW_MANY&alt=json-in-script&callback=recentpostslist"></script>
<span style="font-size: 80%; float:right;">Get this <a href="http://guidelinks.blogspot.com/2016/09/how-to-displaying-recent-post-titles-by.html">widget</a></span>
<!-- Recent Posts by Label End -->

Replace YOUR_BLOG_URL in code line 21 with your own blog URL. For example if you were to list posts from BloggerSentral.com, you would have to replace it with http://www.bloggersentral.com (without the trailing slash).
Replace YOUR_LABEL (line 21) with the label. Labels are case sensitive, make sure you get it right.
Replace the value of SHOW_HOW_MANY (line 21) with the number of posts you want to display. To show all posts, use 500 (I believe 500 is the maximum. If you have more than 500 posts under a certain label, do leave a comment, we’ll work something out).
The titles are bulleted due the use of ordered list <ul>. If you want them numbered instead, just replace ul (in line 5 and 18) with ol.

2. Adding subsequent lists
You need to add a HTML/Javascript gadget for each label. Repeat the same steps above for each label, with a slight difference:
You don’t have to copy the whole code. Just copy the codes in lines 21 and 22 into each gadget.
Make sure your first list (which contains the full code) is positioned on top of all other lists.
Read More

Tuesday, August 30, 2016

How To Add Random Posts Widget for Blogger Blog

Random post is a widget that displays the random articles list in blogger sidebar or anywhere you want to show it. As we know this widget isn’t available by default in blogger, we will need to add this through third party coding. By adding the random post widget on your blog, your blog articles automatically will appear randomly. This very close to recent posts widget and related posts widget. The aim of the adding random post widget in your blog is that it helps to engage your readers and increase the blog page view as well. Another advantage of the adding this widget is that it helps to make your blog more eye catching. Well, in this post I would like to share with you that how to create a random post in blogger blog. For those who are looking for a cool random post widget, I’m sure they’ll love to this widget.




How to add random posts widget in blogger

To add this widget in your blog isn’t easy, you need to write JavaScript and CSS coding. Which isn’t possible for every blogger, but don’t worry! In this post, we are going to add this widget, through already written code. So, you don’t need to write JavaScript and CSS coding. Only follow the below simple steps to add this widget in your blog.
1. Click on below view button and copy all code from appearing window.
2. Login to your blogger and go layout section
3. Add a gadget and click on HTML/JavaScript and the copied paste.
4. save the widget.
5. Now view the blog, Wow! You have successfully added the random post widget in your blog.

How to customize the random post widget

If you want to adjust its look and function. You can do it by little modification in its coding.
  • var rdp_numposts = 5;  this the number of posts, how many you want to displa.
  • var rdp_snippet_length = 120;  To set the number of characters that will be displayed
  • var rdp_info = ‘no‘;  Replace with yes if you want to show the info post
  • var rdp_comment=’comment’ display the post comments.
Now your done!  
Read More

Tuesday, August 23, 2016

Create A Colorful Latest Posts Widget

If you like to add a colorful latest posts widget, then install this one. This is an amazing widget which will show a collection of the latest articles in your blog sidebar with beautiful five different colors, which will attract the visitor’s attention.




<style scoped="scoped">
#ptb-repost {
font:normal normal 11px/normal Arial;
color:#333;
margin:0 auto;
padding:0;
min-height:100px;
background:transparent url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_hNCWjWlGBsisYIZzbwRqjBGXdefQ4MwOo-zEe6SO-juqtgAavnBN3Nf719PqHy6nzumoUOiqCXTytO8HTyGaSpVbReK6C6zdxmpmd7rr-5xYwjaFDTlzx_5NxKvTsv1WilVGjBl6VTg/s1600/loading.gif') no-repeat 50% 50%;
}
#ptb-repost li {
list-style:none;
margin:0;
padding:8px;
background-color:white;
border-bottom:1px solid #ddd;
}
#ptb-repost li a img:hover {
-webkit-transform: scale(1.1, 1.1);
-moz-transform: scale(1.1, 1.1);
-ms-transform: scale(1.1, 1.1);
-o-transform: scale(1.1, 1.1);
transform: scale(1.1, 1.1);opacity: 0.5;
}
#ptb-repost li a img {
float:left;
margin:0 10px 0 0;
padding:0;
border:none;
background:none;
outline:none;
}
#ptb-repost li a.title {
font:normal normal 12px/normal Oswald;
display:block;
text-decoration:none;
color:#fdfdfd;
}
#ptb-repost li a.title:hover {
text-decoration:none;
color:#ffffff;
}
#ptb-repost li:nth-child(1) {background-color:#E11E28;margin-right:0%}
#ptb-repost li:nth-child(2) {background-color:#FD3C03;margin-right:0%}
#ptb-repost li:nth-child(3) {background-color:#FECB09;margin-right:0%}
#ptb-repost li:nth-child(4) {background-color:#6EBE27;margin-right:0%}
#ptb-repost li:nth-child(5) {background-color:#149A48;margin-right:0%}
#ptb-repost li:nth-child(6) {background-color:#5BBFF1;margin-right:0%}
#ptb-repost ul li:nth-child(7) {background-color:#61469C;margin-right:0%}
#ptb-repost ul li:nth-child(8) {background-color:#863E86;margin-right:0%}
#ptb-repost li:nth-child(9) {background-color:#863E62;margin-right:0%}
#ptb-repost li:nth-child(10) {background-color:#815540;margin-right:00%}
</style>
<ul id="ptb-repost"></ul>
<script>
//<![CDATA[
var rp_homePage = "http://guidelinks.blogspot.com/",
    rp_numPosts = 5,
    rp_thumbWidth = 50,
    rp_numChars = 80,
    rp_sortByLabel = false,
    rp_noImage = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjz3-02OenOk5DvWDIiFq9Wlw3jDRePO6dMvFDLr7e1WoMUijrxM8wpsXI1YA1yr7dl-xD67u70su0GC9fX1r9HbqV6Gx2JS2JX8g88GfNObGqBMYrArCPn9qbuf2jC0T4bl2vLfjgZYzw/s1600/minismallest-img.png",
    rp_newTabLink = false,
    rp_loadTimer = "onload";
//]]>
</script>
<script src='https://mas-aldi.googlecode.com/svn/trunk/js/rp-warna-warni.js' type='text/JavaScript'></script>

How to go about creating recent post widget in blogger blog.
    Read More

    Create Recent Posts Without Thumbnails

    The bellow all widgets will display image thumbnails. Which will increase the load time of your blog. If you don’t want to make your blog too heavy then install this one. This a simple widget which only displays the latest article titles only.

    Read More

    Create Gallery Recent Post To Your Blog

    If you want to disply gallery to your blog then install  this widget which will create a beautiful gallery in your blog sidebar from recently published posts with attractive CSS effects. With the help of this can get the visitors attention and your blog will get more pageviews.


    Read More

    Create Slider Recent Post

    This very nice and stylish widget which will increase your blog look. This widget will collect your latest posts and it will show as a slideshow. Which will attract the visitor’s attention and you will notice the increasing your blog page views dramatically. For better result , I will suggest you install this widget just below the header.

    Copy bellow codes and paste to your gadget/widget added
    Read More

    Monday, August 22, 2016

    Add Recent Posts With Page Navigation

    This very amazing widget and beautiful design. It will display the latest post with image thumbnails in your blog’s sidebar. I suggest you to install the widget on your blogger blog because it will allow visitors to see the wide list of latest posts with the help of its page navigation and also has responsive and SEO friendly design
    Read More

    How To Add Recent Post Widget with Thumbnail in Blogger Blog

    Recent posts widget also an important widget like related post for any blog or website. With the help of this widget, we can display our blog latest posts in the blog’s sidebar, which helpful for your blog regular visitors, they can easily find  recently published post on your blog. In this post I want to tell how to add latest post widget with thumbnail in blogger blog. If you are interesting to add this widget in your blog, then follow this tutorial which help you for adding this feature in your blog.

    Why you Need to Add Latest Post widget in your blog?
    There are many benefits of this widget, this the way to display fresh and new contain in blog sidebar it inform your blog visitor which post recently published in your blog. It also gives a great look to your blog and also help to increase your blog page preview. So it is very important widget for any blog or website.

    How to Add Recent Post Widget with Thumbnail in Blogger Blog
    First login your blogger account and select layout from drop menu.

    Now add a new gadget and select HTML/JAVASCRIT and paste the below code and check result.

    <style type=’text/css’>
    img.recent_thumb {width: 90px;height: 70px;float: left;
    margin-right: 10px;}.recent_posts_with_thumbs {float: left;width: 100%;min-height: 70px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
    ul.recent_posts_with_thumbs li {padding-bottom:5px;padding-top:5px;min-height:65px;} .recent_posts_with_thumbs a {text-decoration:none;} .recent_posts_with_thumbs strong {font-size:10px;}</style><script style=’text/javascript’ src=’https://googledrive.com/host/0BzPgmXeCwsMRcmlNOHhtaDNNMjA’></script><script style=’text/javascript’>
    var numposts = 5;
    var showpostthumbnails = true;
    var displaymore = false;
    var displayseparator = false;
    var showcommentnum = false;
    var showpostdate = false;
    var showpostsummary = true;
    var numchars = 50;</script>
    <script src=’/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentpostswiththumbs’></script>
    <hr/>

    If you don’t want to display thumbnail and want only show title and description then replace var showpostthumbnails = true; with var showpostthumbnails = false;
    50 this the description characters amount you can chanage that if you need.
    5 this amount of posts you can change that if you wish.


    How to go about creating recent post widget in blogger blog.
    
    
    1. First of all, choose your favorite widget from above then click on view code button and copy all codes from the appearing pop-up window.
    2. Login your blogger account
    3. Go layout and add new gadget
    4. Select HTML/JavaScript and paste all code here.
    5. Save the gadget
    
    Settings/Configuration
    
    
    • blogURL Fill with your blog URL
    • var numPosts Fill with the number of articles you want to display
    • var showpostthumbnail Select true if you want image thumbnail and false to eliminate
    • var showpostdate Select true if you want show date and false to eliminate
    • bloggertips Please replace with the desired label, when more than two words to use % instead of spaces (only for widget # 5)
    I hope your done!

    You can place your comment in below the comments box.
    Read More

    Friday, August 19, 2016

    Animated Recent posts for Blogger with Thumbnails

    Animated Recent posts for Blogger with Thumbnails

    Recent Post With Thumbnail Simple Spy


    Animated recent post is a fantastic way to present headlines updates to your readers.The effect of smooth scrolling attract readers and generate more clicks to your site.This gadget displays your most recent posts and includes a small thumbnail, but has the added bonus of using an animated effect that moves smoothly through the posts.There are a lot of great tutorials discussing on how to add Animated Recent posts for blogger with thumbnails and Simple Spy, but most of the tutorials I've found are not really suitable for a beginner.



    Read More:
    1. Recent Posts Widget for Blogger Text CSS Hover Effect with jQuery



    How to Install Animated Recent posts for blogger with thumbnails and Simple Spy

    Now let's start adding it...


    Step 1. Login to Your Blogger Account.Go to your Blogger Dashboard.Click on Layout tab from left pane and click on Add a Gadget link.



    Blogger Tips And Tricks|Latest Tips For Bloggers


    Step 2. After click on Add a Gadget link A pop-up box will open now

    with many gadget list, Choose HTML/JavaScript from the gadget options by clicking the blue plus sign for that gadget.


    Blogger Tips And Tricks|Latest Tips For Bloggers


    Step 3. Select 'HTML/Javascript' and add the one of code given below.


    Step 4. Now Click On Save 'JavaScript' You are done.



    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>



    <style type="text/css" media="screen">
    <!--

    #spylist {
    overflow:hidden;
    margin-top:5px;
    padding:0px 0px;
    height:350px;
    }
    #spylist ul{
    width:220px;
    overflow:hidden;
    list-style-type: none;
    padding: 0px 0px;
    margin:0px 0px;
    }
    #spylist li {
    width:208px;
    padding: 5px 5px;
    margin:0px 0px 5px 0px;
    list-style-type:none;
    float:none;
    height:70px;
    overflow: hidden;
    background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaj-7NmSasaFZH_WfsObdHuHKe16k3DYasYZ__kxdB7DCjLdoOtKzLNdSHWPq5UKckhBUrLoFpRC6JrA5xzWyD-4ilmwYOMCH4OwJvNTSJ1ScOOfVGAI32Eu4akzhDICgEjYpkeQK93pxK/s1600/24work-blogspot-com.jpg) repeat-x;
    border:1px solid #ddd;
    }
    #spylist li a {
    text-decoration:none;
    color:#4B545B;
    font-size:11px;
    height:18px;
    overflow:hidden;
    margin:0px 0px;
    padding:0px 0px 2px 0px;
    }
    #spylist li img {
    float:left;
    margin-right:5px;
    background:#EFEFEF;
    border:0;
    }
    .spydate{
    overflow:hidden;
    font-size:10px;
    color:#0284C2;
    padding:2px 0px;
    margin:1px 0px 0px 0px;
    height:15px;
    font-family:Tahoma,Arial,verdana, sans-serif;
    }
    .spycomment{
    overflow:hidden;
    font-family:Tahoma,Arial,verdana, sans-serif;
    font-size:10px;
    color:#262B2F;
    padding:0px 0px;
    margin:0px 0px;
    }

    -->

    </style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script language='JavaScript'>

    imgr = new Array();
    imgr[0] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[1] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[2] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[3] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[4] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    showRandomImg = true;
    boxwidth = 255;
    cellspacing = 6;
    borderColor = "#232c35";
    bgTD = "#000000";
    thumbwidth = 70;
    thumbheight = 70;
    fntsize = 12;
    acolor = "#666";
    aBold = true;
    icon = " ";
    text = "comments";
    showPostDate = true;
    summaryPost = 40;
    summaryFontsize = 10;
    summaryColor = "#666";
    icon2 = " ";
    numposts = 10;



    home_page = "http://bdlab.blogspot.com/";



    limitspy=4
    intervalspy=4000
    </script>
    <div id="spylist">
    <script src='http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/animated-recent-posts-ycode-1.js' type='text/javascript'></script>

    </div>


    And now click Save 


    Note :If your template already have a jquery do not put again, just copy after it
    Html from above a few things could be replaced :


    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>






    1. homepage address

    home_page = “http://bdlab.blogspot.com/”;


    2. Style

    from above style/css, you can change :


    width : 220px;

    width:208px:


    customize base on your template

    and

    background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaj-7NmSasaFZH_WfsObdHuHKe16k3DYasYZ__kxdB7DCjLdoOtKzLNdSHWPq5UKckhBUrLoFpRC6JrA5xzWyD-4ilmwYOMCH4OwJvNTSJ1ScOOfVGAI32Eu4akzhDICgEjYpkeQK93pxK/s1600/24work-blogspot-com.jpg) repeat-x;


    Customize the colors of backuground


    3. image size

    thumbwidth = 70;

    thumbheight = 70;


    Match your needs


    4. How many post you will show

    numposts = 10;


    Base on what you need to show

















    Stylish Scrolling Recent Posts Widget For Blogger


    Stylish Scrolling Recent Posts widget



    1. Go to Blogger Dashboard >> Layout >> Add a gadget >> Add HTML/Javascript Box.

    2. Paste the following code in HTML/Javascript Box.


    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>


    <style type="text/css" media="screen">
    #workwidget {
    overflow: hidden;
    margin-top: 5px;
    padding: 0px 0px;
    height: 385px;
    }

    #workwidget ul {
    width: 295px;
    overflow: hidden;
    list-style-type: none;
    padding: 0px 0px;
    margin: 0px 0px;
    }

    #workwidget li {
    width: 282px;
    padding: 5px 5px;
    margin: 0px 0px 5px 0px;
    list-style-type: none;
    float: none;
    height: 80px;
    overflow: hidden;
    background: #fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaj-7NmSasaFZH_WfsObdHuHKe16k3DYasYZ__kxdB7DCjLdoOtKzLNdSHWPq5UKckhBUrLoFpRC6JrA5xzWyD-4ilmwYOMCH4OwJvNTSJ1ScOOfVGAI32Eu4akzhDICgEjYpkeQK93pxK/s1600/24work-blogspot-com.jpg) repeat-x;
    border: 1px solid #ddd;
    }

    #workwidget li a {
    text-decoration: none;
    color: #4B545B;
    font-size: 15px;
    height: 18px;
    overflow: hidden;
    margin: 0px 0px;
    padding: 0px 0px 2px 0px;
    }

    #workwidget img {
    float: left;
    margin-top: 10px;
    margin-right: 15px;
    background: #EFEFEF;
    border: 0;
    }

    #workwidget img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 4px;
    background: #eee;
    background: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(0.5, #ddd), color-stop(0.5, #c0c0c0), to(#aaa));
    background: -moz-linear-gradient(top, #eee, #ddd 50%, #c0c0c0 50%, #aaa);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.7);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.7);
    box-shadow: 0 0 3px rgba(0,0,0,.7);
    }

    #workwidget img:hover {
    -moz-transform: scale(1.2) rotate(-350deg);
    -webkit-transform: scale(1.2) rotate(-350deg);
    -o-transform: scale(1.2) rotate(-350deg);
    -ms-transform: scale(1.2) rotate(-350deg);
    transform: scale(1.2) rotate(-350deg);
    -webkit-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
    -moz-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
    box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
    }

    .spydate {
    overflow: hidden;
    font-size: 10px;
    color: #0284C2;
    padding: 2px 0px;
    margin: 1px 0px 0px 0px;
    height: 15px;
    font-family: Tahoma,Arial,verdana, sans-serif;
    }

    .spycomment {
    overflow: hidden;
    font-family: Tahoma,Arial,verdana, sans-serif;
    font-size: 10px;
    color: #262B2F;
    padding: 0px 0px;
    margin: 0px 0px;
    }


    </style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script language='JavaScript'>
    imgr = new Array();
    imgr[0] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[1] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[2] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[3] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[4] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    showRandomImg = true;
    boxwidth = 255;
    cellspacing = 6;
    borderColor = "#232c35";
    bgTD = "#000000";
    thumbwidth = 50;
    thumbheight = 50;
    fntsize = 15;
    acolor = "#666";
    aBold = true;
    icon = " ";
    text = "comments";
    showPostDate = true;
    summaryPost = 40;
    summaryFontsize = 10;
    summaryColor = "#666";
    icon2 = " ";
    numposts = 10;
    home_page = "http://bdlab.blogspot.com/";
    limitspy=4;
    intervalspy=4000;
    </script>

    <div id="workwidget">
    <script src='http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/animated-recent-posts-ycode-2.js' type='text/javascript'></script>
    </div>





    And now click Save 





    Note :If your template already have a jquery do not put again, just copy after it
    Html from above a few things could be replaced :




    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

    Now Replace the http://bdlab.blogspot.com with your blog Url.


    You Can Also CUSTOMIZE The CODE According to Your Need

    numposts = 10; Total number of posts which you wants to scroll by this widget
    limitspy=4; Number of the posts to appear on the widget
    intervalspy=4000; Scrolling speed of the widget,if you decreased the value speed of widget will increases.






















    Add Animated Recent Post Widget Sliding Recent Post Widget for Bloggers


    Animated Recent Post Widget Sliding Recent Post Widget



    Go to blogger > Open layout tab

    Now Add A new HTML/JavaScript widget

    Now paste the code given below :



    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>


    <style type="text/css">
    #rp_plus_img{height:377px;}
    #rp_plus_img li {height:60px;padding:5px;list-style:none;
    background-color:#ffffff;
    border:solid 1px #000000;}
    #rp_plus_img a{color:#00000;}
    #rp_plus_img .news-title{display:block;font-weight:bold ;margin-bottom:4px;font-size:11px;
    text-align:justify;
    -moz-border-radius: 5px;}
    #rp_plus_img img{float:left;margin-right:14px;padding:4px;border:solid 1px #00000;width:55px;height:55px;}
    </style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script type="text/javascript" src="http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/animated-recent-posts-ycode-3.js"></script>
    <script type="text/javascript">
    var speed = 1500;
    var pause = 3500;
    $(document).ready(function(){
    rpnewsticker();
    interval = setInterval(rpnewsticker, pause);
    });
    </script>
    <ul id="rp_plus_img">
    <script style="text/javascript">
    var numposts = 5;
    var numchars = 0;
    </script>
    <script src="http://bdlab.blogspot.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=rpthumbnt"></script></ul>




    And now click Save 




    Note :If your template already have a jquery do not put again, just copy after it
    Html from above a few things could be replaced :



    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>


    Now Replace the http://bdlab.blogspot.com with your blog Url.


    numposts = 5; Total number of posts which you wants to scroll by this widget














    Stylish Animated Blogger Recent Posts Widget


    Stylish Animated Blogger Recent Posts Widget



    Go to blogger > Open layout tab

    Now Add A new HTML/JavaScript widget

    Now paste the code given below :


    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>


    <style type="text/css" media="screen">
    #workwidget {
    overflow: hidden;
    margin-top: 5px;
    padding: 0px 0px;
    height: 385px;
    }

    #workwidget ul {
    width: 295px;
    overflow: hidden;
    list-style-type: none;
    padding: 0px 0px;
    margin: 0px 0px;
    }

    #workwidget li {
    width:230px;
    background: #1ed2f2;
    list-style-type: none;
    margin:0 0 5px 0px;
    padding:5px 5px 1px 10px !important;
    -webkit-transition:all 0.2s ease;-moz-transition:all 0.2s ease;-o-transition:all 0.2s ease;border: 0 none !important;-webkit-border-top-left-radius:40px;-webkit-border-bottom-right-radius:40px;-moz-border-radius-topleft:40px;-moz-border-radius-bottomright:40px;border-top-left-radius:40px;border-bottom-right-radius:40px;
    }

    #workwidget li a {
    text-decoration: none;
    color: #4B545B;
    font-size: 15px;
    height: 18px;
    overflow: hidden;
    margin: 0px 0px;
    padding: 0px 0px 2px 0px;
    }

    #workwidget img {
    float: left;
    margin-top: 10px;
    margin-right: 15px;
    background: #EFEFEF;
    border: 0;
    }

    #workwidget img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 4px;
    background: #eee;
    background: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(0.5, #ddd), color-stop(0.5, #c0c0c0), to(#aaa));
    background: -moz-linear-gradient(top, #eee, #ddd 50%, #c0c0c0 50%, #aaa);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.7);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.7);
    box-shadow: 0 0 3px rgba(0,0,0,.7);
    }


    #workwidget li:hover {
    background: #84f6f5;

    }

    #workwidget img:hover {
    -moz-transform: scale(1.2) rotate(-350deg);
    -webkit-transform: scale(1.2) rotate(-350deg);
    -o-transform: scale(1.2) rotate(-350deg);
    -ms-transform: scale(1.2) rotate(-350deg);
    transform: scale(1.2) rotate(-350deg);
    -webkit-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
    -moz-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
    box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
    }

    .spydate {
    overflow: hidden;
    font-size: 10px;
    color: #0284C2;
    padding: 2px 0px;
    margin: 1px 0px 0px 0px;
    height: 15px;
    font-family: Tahoma,Arial,verdana, sans-serif;
    }

    .spycomment {
    overflow: hidden;
    font-family: Tahoma,Arial,verdana, sans-serif;
    font-size: 10px;
    color: #262B2F;
    padding: 0px 0px;
    margin: 0px 0px;
    }


    </style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script language='JavaScript'>
    imgr = new Array();
    imgr[0] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[1] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[2] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[3] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    imgr[4] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png";
    showRandomImg = true;
    boxwidth = 255;
    cellspacing = 6;
    borderColor = "#232c35";
    bgTD = "#000000";
    thumbwidth = 50;
    thumbheight = 50;
    fntsize = 15;
    acolor = "#666";
    aBold = true;
    icon = " ";
    text = "comments";
    showPostDate = true;
    summaryPost = 40;
    summaryFontsize = 10;
    summaryColor = "#666";
    icon2 = " ";
    numposts = 10;
    home_page = "http://bdlab.blogspot.com/";
    limitspy=4;
    intervalspy=4000;
    </script>

    <div id="workwidget">
    <script src='http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/animated-recent-posts-ycode-2.js' type='text/javascript'></script>
    </div>





    And now click Save 





    Note :If your template already have a jquery do not put again, just copy after it
    Html from above a few things could be replaced :




    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>

    Now Replace the http://bdlab.blogspot.com with your blog Url.





    Settings:

    Change http://bdlab.blogspot.com to Your Blog address
    Change numposts = 10 to Show number of Recent posts with thumbnails













    Scrolling Recent Post Gadget For Blogger


    Scrolling Recent Post Gadget For Blogger



    Adding The Widget To Blogger



    Go to Blogger >> Layout >> Add Gadget >> Select an HTML/JavaScript Gadget

    Copy the following code and paste inside an HTML/JavaScript widget


    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>


    <style>img.recent_thumb {padding:1px;width:55px;height:55px;border:0;float:right;margin:0 0 5px 10px;}.recent_posts_with_thumbs {float: left;width: 100%;min-height: 70px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}ul.recent_posts_with_thumbs li {padding-bottom:5px;padding-top:5px;min-height:65px;}.recent_posts_with_thumbs a {text-decoration:none;}.recent_posts_with_thumbs strong {font-size:10px;}</style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script style='text/javascript' src="http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/hb-recentposts-ycode.js" ></script>
    <script style='text/javascript' src='http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/hb-jquery-ticker-nocode.js'></script>
    <script style='text/javascript'>
    var numposts = 7;
    var showpostthumbnails = true;
    var displaymore = false;
    var displayseparator = false;
    var showcommentnum = false;
    var showpostdate = false;
    var showpostsummary = true;
    var numchars = 100;
    $(document).ready(function () {$('#sai').vTicker({
    speed: 500,
    pause: 3000,
    showItems: 3,
    animation: 'fade',
    mousePause: false,
    height: 0,
    direction: 'up'
    });});
    </script>
    <div id="sai">
    <script src='http://bdlab.blogspot.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentpostswiththumbs'></script>
    </div>





    And now click Save 





    Note :If your template already have a jquery do not put again, just copy after it
    Html from above a few things could be replaced :




    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>

    Now Replace the http://bdlab.blogspot.com with your blog Url.



    Optional Customizations


    To change total number of posts find this code var numposts = 7;
    If you don't want to show post thumbnails then change this value var showpostthumbnails = true; to false.

















    New and Flexible Recent Posts Widget With Thumbnail for Blogger


    Flexible Recent Posts Widget With Thumbnail



    Follow the step by step instructions to add this widget in Blogger:
    Sign in to Blogger
    Go to Layout > Add a Gadget
    Select HTML / JavaScript
    Paste the code given below in the field and Save.


    <style type="text/css">
    /*<![CDATA[*/
    img.label_thumb{-webkit-transition:all .5s ease;-moz-transition:all .5s ease;transition:all .5s ease;float:left;padding:0;border:3px solid #cccccc;-webkit-border-radius:100px;-moz-border-radius:100px;border-radius:100px;background:#fff;margin-right:10px;height:70px;width:70px}
    img.label_thumb:hover{-moz-transform:scale(1.2) rotate(-350deg);-webkit-transform:scale(1.2) rotate(-350deg);-o-transform:scale(1.2) rotate(-350deg);-ms-transform:scale(1.2) rotate(-350deg);transform:scale(1.2) rotate(-350deg);-webkit-box-shadow:0 0 20px rgba(0,0,0,0.3),inset 0 0 20px rgba(0,0,0,0.1);-moz-box-shadow:0 0 20px rgba(0,0,0,0.3),inset 0 0 20px rgba(0,0,0,0.1);box-shadow:0 0 20px rgba(0,0,0,0.3),inset 0 0 20px rgba(0,0,0,0.1);background:#f7f6f6}
    .label_with_thumbs{float:left;width:100%;min-height:70px;margin:0 10px 2px 0;adding:0}ul.label_with_thumbs li{background:#f5f5f5;list-style-type:none;padding:8px 0;min-height:65px;margin-bottom:5px}
    .label_with_thumbs a{color:#3395BF;font-size:12pt;outline:0;text-decoration:none}
    .label_with_thumbs a:hover,.label_with_thumbs a:focus{color:#F4A557}.credits,.credits a{font-size:12px!important;text-align:left;text-shadow:0 1px 0 #fff;color:#888}
    #mdjumplink{font-weight:800;background:#f7f8f9;background:-webkit-linear-gradient(top,#f7f8f9 0,#e9e9e9 100%);background:-moz-linear-gradient(top,#f7f8f9 0,#e9e9e9 100%);background:-o-linear-gradient(top,#f7f8f9 0,#e9e9e9 100%);background:-ms-linear-gradient(top,#f7f8f9 0,#e9e9e9 100%);background:linear-gradient(top,#f7f8f9 0,#e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f8f9',endColorstr='#e9e9e9',GradientType=0);border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:6px 12px;margin:0;-webkit-box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);-moz-box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);box-shadow:0 1px 0 #f9f9f9 inset,1px 1px 1px rgba(223,223,223,0.4);color:#888!important;text-shadow:0 1px 0 #fff;line-height:1.2;cursor:pointer;font-size:13px;font-weight:bold;text-decoration:none!important}
    #mdjumplink:hover{background:#f1f1f1;background:-webkit-linear-gradient(top,#f1f1f1 0,#e0e0e0 100%);background:-moz-linear-gradient(top,#f1f1f1 0,#e0e0e0 100%);background:-o-linear-gradient(top,#f1f1f1 0,#e0e0e0 100%);background:-ms-linear-gradient(top,#f1f1f1 0,#e0e0e0 100%);background:linear-gradient(top,#f1f1f1 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1',endColorstr='#e0e0e0',GradientType=0);text-decoration:none!important}
    #mdjumplink a{color:#888!important;text-decoration:none;display:block;margin:2px}
    #mdjumplink a:hover{color:#888!important;text-decoration:none}
    #mdcomments{padding:6px 12px;background:#3395BF;color:#FFFFFF!important;font-size:13px;font-weight:800}
    #mdcomments:hover{background:#F4A557;text-decoration:none}
    /*]]>*/
    </style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script type="text/javascript" src="http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/animated-recent-posts-ycode-5.js"></script>
    <script type='text/javascript'>
    //<![CDATA[
    var numposts = 5;
    var showpostthumbnails = true;
    var displaymore = true;
    var displayseparator = true;
    var showcommentnum = false;
    var showpostdate = false;
    var showpostsummary = false;
    var numchars = 80;
    //]]>
    </script>
    <script src='http://bdlab.blogspot.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=labelthumbs'></script>



    Customization:
    var numposts = 5; (Number of Posts to be shown)
    var showpostthumbnails = true; (Post Image)
    var displaymore = true; (More Button)
    var showcommentnum = false; (No of Comments)
    var showpostdate = false; (Post Date)
    var showpostsummary = false; (Post Summry)
    var numchars = 80; (Characters in post summary)
    True is for Display item and False for not to display. Change According to your needs.

    Change http://bdlab.blogspot.com with your Website/ Blog URL.










    Tooltips Recent Post Widget For Blogger With Thumbnail


    Tooltips Recent Post Widget For Blogger With Thumbnail



    Follow these very simple steps to add the "Tooltips Recent Post Widget For Blogger With Thumbnail " in your blog.

    Step 1 : Go To Blogger > Design > Page Elements
    Step 2: Click on "Add a Gadget" link
    Step 3: From the pop-up window, choose HTML/JavaScript
    Step 4: Copy and paste the following code below


    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>


    <style type="text/css">
    #post-gallery {
    width:304px;
    margin:0px auto;
    font:normal 11px Arial,Sans-Serif;
    color:##000000
    ;
    padding:8px;
    background-color:#1BA1E2
    ;
    -webkit-box-shadow:0px 10px 30px rgba(0, 0, 0, 0.4);
    -moz-box-shadow:0px 10px 30px rgba(0, 0, 0, 0.4);
    box-shadow:0px 10px 30px rgba(0, 0, 0, 0.4);
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
    }
    #post-gallery h2 {
    font:20px Arial,Sans-Serif;
    color:white;
    text-shadow:0px 3px 2px black;
    text-transform:uppercase;
    margin:2px 2px 2px;
    padding:7px 14px;
    background-color:#000000;
    text-align: center;
    }
    #post-gallery .rp-item {
    float:left;
    display:inline;
    position:relative;
    margin:2px;
    padding:0px 0px;
    background:#fff url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7srjRXaXEPP5pSEWPVhEzz90N9Ktd3aKa99-DYlil6X3T2IgCgxSF0cJe_MhkTn9a76do-RhTaea5Xa19h6X7bs1RIuIb1J7G-iGDd1VL7DHIYaCeAI7CkSyVzj03fzNEhjzQc-09Rgh4/s1600/24work.blogspot.com.loading.gif') no-repeat 50% 50%;
    width:72px;
    height:72px;
    }
    #post-gallery .rp-item img {
    width:72px;
    height:72px;
    border:none !important;
    margin:0px 0px !important;
    padding:0px 0px !important;
    background:transparent !important;
    display:none;
    }
    #post-gallery .rp-item .rp-child {
    position:relative;
    top:10%!important;
    left:10%!important;
    z-index:1000;
    width:200px;
    background-color:white;
    border-top:5px solid #1BA1E2;
    -webkit-box-shadow:5px 5px 10px rgba(0, 0, 0, 0.7);
    -moz-box-shadow:5px 5px 10px rgba(0, 0, 0, 0.7);
    box-shadow:5px 5px 10px rgba(0, 0, 0, 0.7);
    padding:10px 15px;
    overflow:hidden;
    word-wrap:break-word;
    display:none;
    opacity: 0.9;
    }
    #post-gallery .rp-item .rp-child h4 {
    font-size:12px;
    margin:0px 0px 5px;
    color:#1BA1E2;
    }
    #post-gallery .rp-item:hover .hidden {display:block;}
    </style><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tips and Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tips and Tricks" border="0" style="position: fixed; bottom: 10%; right: 0%; top: 0px;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Latest Tips For Bloggers"><img src="https://bitly.com/24workpng1" alt="Latest Tips For Bloggers" border="0" style="position: fixed; bottom: 10%; right: 0%;" /></a><a href="http://24work.blogspot.com/" rel="dofollow" target="_blank" title="Blogger Tricks"><img src="https://bitly.com/24workpng1" alt="Blogger Tricks" border="0" style="position: fixed; bottom: 10%; left: 0%;" /></a><script type="text/javascript">


    var rpTitle = "Latest Post", // Widget Title

    numposts = 20, // The number of thumbnails / posts to display
    numchar = 200, // Number of characters in the description tooltip
    rcFadeSpeed = 600, // Speed of the effect. fadeIn () tooltip appears

    pBlank = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRpwHPagct4HFLlHG54FvKRX2Zz6dgjY0G2tyNOODOXiWUdeM70b-Lts0qnUsGnQAOMnJe1zcfYs0bNkHWlrQ3S4BhSf36VsPCZSGJfX-UKU9wFrxJPa3caBYXBglocgHyEW1qR0KeXVH0/s1600/noimage.png", // Image that show up if the post doesn't have a image
    blogURL = "http://bdlab.blogspot.com/"; // Your Blog Address
    </script><script src="http://24work-new.googlecode.com/svn/trunk/24work-blogspot/recent-posts/animated-recent-posts-ycode-6.js" type="text/javascript"></script>





    And now click Save 





    Note :If your template already have a jquery do not put again, just copy after it
    Html from above a few things could be replaced :




    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>

    Now Replace the http://bdlab.blogspot.com with your blog Url.



    Customization


    numposts = 20, // The number of thumbnails / posts to display
    numchar = 200, // Number of characters in the description tooltip
    rcFadeSpeed = 600, // Speed of the effect. fadeIn () tooltip appears
    Read More