Recent post is widget which will display the latest post of the blog. As you can see in many blogs. Usually these types widgets are placed in the sidebar of the blog. So we need a different from other's blog, here it is. This recent post widget will show the latest post with thumbnail and description as tooltip when moueover on the thumbnail. It had fade effect. Well lets try simply with steps mentioned below.
I hope you like this widget and comment it if there is any mistake. Spread out this widget to your friends.
Live Preview
How To Add Recent Post Widget With Thumbnail and Tooltip in Blogger
1. Blogger > Layout > Add Gadget > HTML/JavaScript
2. Add the following code in it and Save it.
<style type="text/css">
#post-gallery {
width:304px;
margin:0px auto;
font:normal 11px Arial,Sans-Serif;
color:#494848;
padding:8px;
background-color:#17B986;
-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:#48D;
text-align: center;
}
#post-gallery .rp-item {
float:left;
display:inline;
position:relative;
margin:2px;
padding:0px 0px;
background:#fff url('http://softglad.at.ua/images/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 #FA7C19;
-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:#FA7C19;
}
#post-gallery .rp-item:hover .hidden {display:block;}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
var rpTitle = "Latest Post", // Widget Title
numposts = 20, // The number of thumbnail / posts to display
numchar = 200, // Number of characters in the description tooltip
rcFadeSpeed = 600, // Speed of the effect. fadeIn () tooltip appears
pBlank = "http://softglad.at.ua/images/no-img.png", // Image that show up if the post doesn't have a image
blogURL = "http://www.softglad.com"; // Your Blog Address
</script>
<script src="http://softglad.at.ua/widgets/post-gallery.js" type="text/javascript"></script>
Replace http://www.softglad.com with your blog url. numposts is the number of thumbnails / posts that you want to display. numchar is the number of characters in the description tooltip. rcFadeSpeed is the speed of the fade effect.#post-gallery {
width:304px;
margin:0px auto;
font:normal 11px Arial,Sans-Serif;
color:#494848;
padding:8px;
background-color:#17B986;
-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:#48D;
text-align: center;
}
#post-gallery .rp-item {
float:left;
display:inline;
position:relative;
margin:2px;
padding:0px 0px;
background:#fff url('http://softglad.at.ua/images/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 #FA7C19;
-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:#FA7C19;
}
#post-gallery .rp-item:hover .hidden {display:block;}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
var rpTitle = "Latest Post", // Widget Title
numposts = 20, // The number of thumbnail / posts to display
numchar = 200, // Number of characters in the description tooltip
rcFadeSpeed = 600, // Speed of the effect. fadeIn () tooltip appears
pBlank = "http://softglad.at.ua/images/no-img.png", // Image that show up if the post doesn't have a image
blogURL = "http://www.softglad.com"; // Your Blog Address
</script>
<script src="http://softglad.at.ua/widgets/post-gallery.js" type="text/javascript"></script>
I hope you like this widget and comment it if there is any mistake. Spread out this widget to your friends.
This is a variety recent post widget, just a superb
ReplyDeleteThat's really nice . i like it.
ReplyDeleteThanks for nice comment.
DeleteKeep browsing with us
Great Tip for Blogger.. Keep posting such nice articles..
ReplyDeleteNice Widget.Thanks Ashiq
ReplyDeletenice but im having a trouble.. im not getting images to all... check in http://unlimitedsoftz.blogspot.in/
ReplyDeleteActually I didn't see this widget on your blog. This script will not cache some images.
DeleteWell I removed That.. please refer this screenshot..
Deletehttps://lh4.googleusercontent.com/-VBVAFp1oz2A/UVeT3811L0I/AAAAAAAABdg/XO0E_ifwAUU/s624/31-03-2013%252007-08-43.png
thanks! is there any way to display popular post like this.
ReplyDeletePresently there is no popular post widget like this but I will try to make soon.
DeleteKeep browsing with us.
- Attractive Blogger Popular Post Widget
Superb widget.. I added to my site- www.makeuseofandroid.com. Thank you very much for this superb widget.. But I want to overflow snippet from widget container. Please see this screenshot- http://goo.gl/NBt3X. How can I fix this?
ReplyDeleteThank you,
DeleteFind below code on your template and remove the highlighted (bold) line.
#rsidebar-wrapper {
overflow: hidden;
Hope you fixed, plz contact again if there any problem.
Is there is any other way to fix it? After removing above code all widgets in my right sidebar overflows & looking little nastier :(. Can you make a conditional tag or invert your snippet.
DeleteI can tell you that if you made overflow visible, then whenever mouseover on thumb, it will display the scroll bar.
Deleterecent post widget is the key to engage user for the longer period of time along with it increases pageviews and helps to reduce bounce rate too.so this widget must be overwhelming and attractive and i think your widget has that quality and will work for me .thanks for sharing.seo tips for traffic
ReplyDeletethanks!
ReplyDeleteI like your widget thank you
ReplyDeletethanks a lots....
ReplyDeleteThis is very useful widget. Thanks for sharing.
ReplyDeleteThnx for this nyc post! Hacking Articles
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThere is problem showing widget in Internet Explorer 8, even this page cant load with this widget. Firefox 13 has no problem, believe that in higher version working well too. Dont know others browser.
ReplyDeleteThanks very much,i will use this widget because this is great! :D Thanks!!!
ReplyDeletethis widget error
ReplyDeleteSorry bro,
DeleteRecently our hosting service is down. So this http://softglad.at.ua/widgets/post-gallery.js is broken. We will try to correct ASAP.
Hello Ashiq Hassan,
ReplyDeleteWould like know if i can teach your tutorials in my blog at portuguese.
Surely their claims will be assigned.
Thankyou.
Áurea
Please contact me through form
DeleteThank you a lot for this awesome widget, i like it! Thank you again.
ReplyDeleteMy blog: www.yourdailypornmovies.blogspot.com
Great! thanks
ReplyDeletethanks :=)
ReplyDeleteHey man, this widget works awesome, love it!
ReplyDeleteBut i can ask about this,
can i replace the Blog URL with URL to my labels?
Just replace blog URL with label URL.
DeleteVery useful gadget! Thank you! ;-)
ReplyDeleteMy site www.manilagotsale.com
Really it is the recent posts widget that i need. But i need to make some changes with it can you help me?
ReplyDeleteBut these thumbnail widget is loading bit slow that make the visitor worry..how to load it faster..photography blog
ReplyDeleteThanks for this!! I used it in my blog. I placed it below the post body with a broader width and black background color..!! Looks wondrous..!
ReplyDeleteHello Mr., Iam Help, How to add this widget Recent Post Widget With Thumbnail Tooltip in edit template HTML blogger ?? Thanks you.
ReplyDeleteThis widget doesn't show image, how can i fix it?
ReplyDeletethank's
cool widget ! like it ! :D
ReplyDeletehttp://soffmodd.blogspot.com/
why the article snipet is too far from widget, check http://ghiwar.blogspot.com/
ReplyDeleteit' s perfect and very pretty...very good job !!!
ReplyDeleteI found it by chance and i loved it....Thank you.
ReplyDeleteWhatever style you decide, make sure that the wall mounted Cheap Taps UK you select help to create a feeling of consistency. It may be a good idea to purchase the same set of LED Taps for your bathtub as you do for your sink. However, this by no means the only thing that should be thought about when it comes to buying Kitchen Taps. Of course, we all want products that not only look good but also offer a high level of performance, so it is important you are aware of your water system's pressure level before you go ahead and make a purchase. This can have a significant impact on the type of fixtures you are able to get, so if you live in a low pressure household, then you should look to buy Bathroom Accessory with a 0.2 bar rating. Alternatively, if you have a combi boiler then you will find that Pull out http://www.uktaps.co.uk with a grading between 0.2 and 1.5 bar are suitable.