Sliding Recent Post Widget in Blogger

In my previous tutorial, I shared an article about automatic scrolling recent post widget in blogger wherein  you can customize on your likenss, Today  I will show you another trick of showing it and that is through a slide show. There is no need for you to add  text, images or  even links for it will work automatically. You can also customize  this according to your preferences. So let us now go to the tutorial.

automatic sliding recent post

Live Demo



Sliding Recent Post Widget in Blogger with Jquery


Note: Always back-up your template before editing
Step 1. Go to Blogger Dashboard >> Template >> Edit HTML

sliding recent post widget

Step 2. Look for the code ]]></b:skin> and just above it paste the code below,



#slide-container {
    height: 360px;
    position: relative;
    width: 480px;
}

#slider {
    height: 360px;
    left: 25px;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    width: 480px;
    font-family: calibri;
}

.slide-desc {
    background: transparent url(http://i195.photobucket.com/albums/z105/dantearaujo/darkbg.png) repeat scroll 0 0;
    color: #FFFFFF;
    padding: 10px;
    position: absolute;
    right: 0px;
    text-align: left;
    top: 0;
    width: 200px;
    z-index: 99999;
}

.slide-desc h2 {
    display: block;
}

.crosscol .widget-content {
    position: relative;
}

#slider ul, #slider li,

#slider2 ul, #slider2 li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#slider2 {
    margin-top: 1em;
}

#slider li, #slider2 li {
/*

define width and height of list item (slide)

entire slider area will adjust according to the parameters provided here

*/
    width: 480px;
    height: 360px;
    overflow: hidden;
}

#prevBtn, #nextBtn,

#slider1next, #slider1prev {
    display: block;
    width: 30px;
    height: 77px;
    position: absolute;
    left: -30px;
    text-indent: -9999px;
    top: 71px;
    z-index: 1000;
}

#nextBtn, #slider1next {
    left: 520px !important;
}

#prevBtn, #nextBtn, #slider1next, #slider1prev {
    display: block;
    height: 77px;
    left: 0;
    position: absolute;
    top: 132px;
    width: 30px;
    z-index: 1000;
}

#prevBtn a, #nextBtn a,

#slider1next a, #slider1prev a {
    display: block;
    position: relative;
    width: 30px;
    height: 77px;
    background: url(http://i195.photobucket.com/albums/z105/dantearaujo/prev.png) no-repeat 0 0;
}

#nextBtn a, #slider1next a {
    background: url(http://i195.photobucket.com/albums/z105/dantearaujo/next.png) no-repeat 0 0;
}

/* numeric controls */

ol#controls {
    margin: 1em 0;
    padding: 0;
    height: 28px;
}

ol#controls li {
    margin: 0 10px 0 0;
    padding: 0;
    float: left;
    list-style: none;
    height: 28px;
    line-height: 28px;
}

ol#controls li a {
    float: left;
    height: 28px;
    line-height: 28px;
    border: 1px solid #ccc;
    background: #DAF3F8;
    color: #555;
    padding: 0 10px;
    text-decoration: none;
}

ol#controls li.current a {
    background: #5DC9E1;
    color: #fff;
}

ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus {
    outline: none;
}

/* END EasySlider By bloggingtipsandtrix.blogspot.com */

Step 3. Let us now install a Javascript in your template. Copy the code below and paste it above </body> tag,


<!-- Start easy content slider by bloggingtipsandtrix.blogspot.com -->
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js' type='text/javascript'></script>
<script src='http://accordion-template.googlecode.com/svn/trunk/easySlider1.7.js' type='text/javascript'></script>
<script type='text/javascript'>
//<![CDATA[
$(document).ready(function(){
 $("#slider").easySlider({
 auto: true,
 continuous: true
 });
});
//]]>
</script>
<!-- End easy content slider by bloggingtipsandtrix.blogspot.com -->

Step 4. Save your template.  Your halfway  done!

Adding the Gadget in your Blogger Lay-out Page


Step 5. Again go to Blogger Dashboard >> Lay-out >> Add Gadget

Step 6.
 Scroll down and hit  HTML/Javascript. Inside the empty box, paste the code below


<div id="slider">
<script style="text/javascript" src="http://code.helperblogger.com/easySlider.min.js"></script>
<script style="text/javascript">
 var numposts_gal = 6;
 var numchars_gal = 150;
 var random_posts = false; // random posts
</script>
<!-- replace with your web address (marked with red color) -->
<script src="http://yourblog.blogspot.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=showgalleryposts&max-results=999999"></script>
</div>

Step 7.  A.Replace  yourblog.blogspot.com with your own blog URL,
            B. Replace 6  to change the number of posts to show in the slider.
            C. Replace 150 to change the number of texts to appear in the description.
Step 8. Save your work and see your new widget.
If you have some suggestions queries  or additional information regarding this post, feel free to write it our contact page or to the comment box below.We will be glad to hear your side.
Good Day!
Source: Helperblogger 

Auto Scrolling Recent Post Widget in Blogger

There are many recent post widgets shared by different bloggers  which are  only  moving when a mouse cursor touches it. It is very important to grab viewers' attention upon landing a certain page in our blog and see what is new on it so that they will have an idea if we are keep on  posting articles by which they could  also learn or gain some useful information  and consequently  they will  remember us. Now,  in these tutorial, I will show the steps on how to make a recent post widget that scrolls automatically, with mouse hover effect on image, and each snippet contains the post title,   post date, and the no of viewers who gave comments.

scrolling recent post widget

Live Demo

Auto Scrolling Recent Post Widget in Blogger


Step 1. Go to Blogger Dashboard >> Template >> Edit HTML

self scrolling recent post

Step 2. Find the code </head>, and just above it paste the code below,
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js' type='text/javascript'></script>

Note: Skip this step (2) if you have already installed a Jquery library on  your Blogger Template for it will not scroll if you have more than one (1) Jquery library.
Step 3. Save your template


Adding the Gadget in your Blogger Lay-out Page


Step 4. Copy the set of code below,

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

/* ========== Scrolling Recent Posts Widget By helperblogger.com ======== */

#helperblogger-widget {
    overflow: hidden;
    margin-top: 5px;
    padding: 0px 0px;
    height: 385px;
}

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

#helperblogger-widget 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/AVvXsEil9ZRaQLtZ9GgpzbtnopR-9XfZeHmd_QYNl-wwc8q9bDYB-ZpUAvUZyZJ_5l8t7U6DhCKi2GmwwLEWJcY4yLiNd1TwU5_TcCpJhpNovxvBOveK7zxvKRcVAzdrEzHdoCapf_rhDLMGOHM/s1600/helperblogger.com-post.jpg) repeat-x;
    border: 1px solid #ddd;
}

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

#helperblogger-widget img {
    float: left;
    margin-top: 2px;
    margin-right: 15px;
    background: #EFEFEF;
    border: 0;
}

#helperblogger-widget 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);
}

#helperblogger-widget 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;
}

/* ========== Scrolling Recent Posts Widget By helperblogger.com ======== */

-->
</style>

<script language='JavaScript'>
imgr = new Array();
imgr[0] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioF_Nqiul2h52RNnn7zegoFTn_IvE3r6oce9qCjtwM6TD5RquIl956_mwaD0_AMSiasv5HpEcz3m3VphSGp76CUZTB2pB4eQvYiv4Rv3GbjoNHFEJ2fyJgYtSK3PDho2Il4fa-iDfpJ6E/s1600/no-thumbnail.png";
imgr[1] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioF_Nqiul2h52RNnn7zegoFTn_IvE3r6oce9qCjtwM6TD5RquIl956_mwaD0_AMSiasv5HpEcz3m3VphSGp76CUZTB2pB4eQvYiv4Rv3GbjoNHFEJ2fyJgYtSK3PDho2Il4fa-iDfpJ6E/s1600/no-thumbnail.png";
imgr[2] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioF_Nqiul2h52RNnn7zegoFTn_IvE3r6oce9qCjtwM6TD5RquIl956_mwaD0_AMSiasv5HpEcz3m3VphSGp76CUZTB2pB4eQvYiv4Rv3GbjoNHFEJ2fyJgYtSK3PDho2Il4fa-iDfpJ6E/s1600/no-thumbnail.png";
imgr[3] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioF_Nqiul2h52RNnn7zegoFTn_IvE3r6oce9qCjtwM6TD5RquIl956_mwaD0_AMSiasv5HpEcz3m3VphSGp76CUZTB2pB4eQvYiv4Rv3GbjoNHFEJ2fyJgYtSK3PDho2Il4fa-iDfpJ6E/s1600/no-thumbnail.png";
imgr[4] = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEioF_Nqiul2h52RNnn7zegoFTn_IvE3r6oce9qCjtwM6TD5RquIl956_mwaD0_AMSiasv5HpEcz3m3VphSGp76CUZTB2pB4eQvYiv4Rv3GbjoNHFEJ2fyJgYtSK3PDho2Il4fa-iDfpJ6E/s1600/no-thumbnail.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://www.bloggingtipsandtrix.blogspot.com/";
limitspy=4;
intervalspy=4000;
</script>

<div id="helperblogger-widget">
<script src='http://code.helperblogger.com/recent-posts-spy.js' type='text/javascript'></script>
</div>

Step 5.  Again go to  Blogger Dashboard, click Lay-out then select Add a Gadget,
Step 6. Scroll Down and select HTML/Javascript,
Step 7. In the empty box, paste the code that you have copy from Step 4,
Step 8. Hit the Save button and you have now a new recent post widget with self scrolling effect

Short Customization:
a. Replace  80 to adjust the individual height/box of the widget.
b. Replace  385 to customize/adjust the whole height of the widget.
c. Replace http://www.bloggingtipsandtrix.blogspot.com/ with your own blog URL.
d. Replace 10 with your desired number of posts to scroll in the widget.
e.  Replace 4  with your desired number of post to appear in widget. 
f.  Replace 4000  . Increase value will slow down the appearance/scrolling  of the next post. Decrease value will make the scrolling effect a  faster.

If you some questions regarding this post, we would highly appreciate to hear it. Please leave you comments at the comment box or to my contact page.
More Blessings to all bloggers! 
Source: helperblogger

Adding Texts Below "Post a Comment" Version 1

Normally if we  make a  posts then publish it and viewers come on it and enjoy or being unsatisfied  they often leave some comments. Sometimes readers published a spam comments to your article and not good to read especially to your other viewers. In order to minimize those type of situations, you, as the administrator will give some sort of directions in posting a comments in order to maintain a good and healthy blog commenting. Today, In this tutorial, I will share  you how to add texts or directions just below the line "Post a Comment". Please take look at the photo below and at the end of this page article for a live demo.

Also Read: How to Add Texts below Post a Comment Version 2 

adding text below post comment



Adding Texts or Direction Below "Post a Comment"


Step 1.  Go to Blogger Dashbord >> Template (Back- up your Template) >> Edit HTML

Step 2. Find/Control F the code below,


<p><data:blogCommentMessage/></p>

Step 3.  Insert your texts or  notes before   the tag </p>   ( or after the tag <data:blogCommentMessage/> ) as shown in the blockquote below.
<p><data:blogCommentMessage/>Your text/note here</p>

Note:
Your texts/note must be in HTML mode 

Example of a texts in  HTML  mode

Your feedback is always appreciated. We will try to reply to your queries as soon as time allows.
<br/>
<br/>
<b>Note:</b>
<br/>
<b>No cheesy/spam Comments tolerated Spam comments </b>will be deleted immediately upon our review.
<br/>
<br/>
Regards,
<br/>
<br/>
Your Name
Functions:
<br/> -  to have a  break or space between your first line and to the next line of your  texts
<b></b>  -  to make text bold

To put a link in the word reply  in the  note above, write it  in this manner,


Your feedback is always appreciated. We will try to  <a href="Your Post URL Here" rel="nofollow">reply</a>  to your queries as soon as time allows.


Step 3.  Click Preview to see the initial effect then Click Save Button.

Enjoy Blogging and Peace out!!!!

Customize Texts Beside the Image in "Post a Comment"

Please click here for the complete and updated tutorial about this post.
Yesterday, I posted an article about replacing the text "Post a Comment"  with an image or texts in order to encourage our viewers to leave a comment in our articles made. But the texts that we had put is not properly styled, so let us put some css on it to make it beautiful.
customize texts post comment

Customize Texts Beside the Image in "Post a Comment"


Click here for the tutorial if you had not yet replace an an image in your "Post a Comment" above comment box.
Step 1. Go to Blogger >> Template (Always Back-up Template) >> Edit HTML,


Step 2. Find/Control F the tag ]]></b:skin> and just above it paste the code below,



#comments h4 {
color: #4E555A;
font-size: 23px;
font-family: Arial, Verdana !important;
line-height: 1.6em !important;
font-weight: bold;
margin: 0 0 20px;
padding: 10px 0 0;
}

Short Customization (Optional):

1. Change #4E555A to change the color of the text beside the image. You can select hexadecimal colors here.
2.  Replace the value of font- size (23px) in order to change the size of the text.

Step 4. Always click Preview to see the initial result of the code applied then hit the Save button and you are done.
Hope you enjoy this short post and if you have some questions, don't forget to leave a comment.
Thank you and Enjoy!




Changing "Post a Comment" With Image and Text

I really made a lot of research in order to implement this kind of trick in my blog, for I want that my unique visitors will give some comments regarding my posts for the development  of my writing skills, in delivering my tutorials and to be complemented as well. So let us jump with the tutorial on how to change or replace the text "Post a Comment" with an image and some encouraging texts.

customize post a comment with text


Changing "Post a Comment" With Image and Texts


Step 1. Go to Blogger Dashboard >> Template >> Edit HTML

replce post comment with image

Step 2. Look/Control F the code below,
<h4 id='comment-post-message'> <data:postCommentMsg/></h4>
Step 4. Replace the text in blue (data:postCommentMsg) above with one of the image URL  below


replace post comment image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgm96SSmO5g5bQtgfmgqRNE17HUhEmsV8Dc_GuPjlGR7KnCKbHlLX0wHeXXiRvw_YLryTvYt7xVJunzBshkQK7UfKBo4_6JHGQTJR64OLHr0hI8G0cXcm7r20zGhs33wcn-DO8Gjobvywc/s1600/animated+comment+arrow+7.gif'
change post comment with image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjPnSaxQf5DHBzMs4aOHV_LXOvzDTfb4EgMjMzgb46LHzcbEE1-3O_c_chAcYwJNwOBV6TwmGWKyPL-aNHCWB6ts2wkzhogw0zNpRkQtHwb9xX3jpC8tC9vGJBeIPFGzsxU1THNMBnBn0A/s1600/colored+comment++2.png'

customize post comment with text
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFbVOT8qBFpEaFTLYGPbeidgVMfQp_ewpOwx0AoAeXbkbobw_rW7b0NojKXn3XKMPn1t4vYAh5CPPW84HRwuYqD1yhhHUApnSWaeYJX4qNwEt7pFUGMHpHyeIFiJN9sbhKsOJYz7SdiIk/s1600/comment+9.gif'

substitute post comment  with image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiflIab-BHVWVIIfew0Lt53e4fYBfpGnEMSWnT4sZpVP8522Y_K6Cb9QFTeTI3WMlngGMiyZUJM3cjanGMK2hC9HL-PyM8v90ii5UDFtMhxemtJ60OmUixtZHZ-oGng1_ISQKE4kM-x2tA/s1600/comment+cloud+3.png'

designate post comment image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZl-uEG9GFLMzmciPgmRcpI8AfQu-1K8d3h8U2r3SQ6kpJ_BnZaPc0JWfF59FvascHCeSFV0vAxwk5dKL8xJe8PQ7FBB36cpo3UJ4ledZp557PDwhWLSr7J4QFW77LFch8HXJ3D5b52y8/s1600/leave+a+comment+8.png'

renew post comment with image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgggsyrOZxj7Z9rnihgwNBEyzBaU5b-SemxS9tTp5n3m9WEa4JswCBwQf91RIzAnBd4CLHODrAIj6LGsLCDKq_9cFy1fKysTz8cL2qgUJJofDEbIS6FexdrPM0lcNuP7mSAFb0kcrdwL7c/s1600/comment+here+blue+4.gif'

regenerate post comment with text
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgo5E3HSU-s6hKvbxhCszrjkJBRtPsZwdF1ds3H9TwNjPkV7u7YORG91onE7Xy_0qhWFfd-_TUaWVJEqgODf-_nc64-Z_7pC-zCu6pPadcODEUbi1J53kbSy836CD_dXT8vveIXwjd5DgI/s1600/leave+a+comment+1.png'

put post comment with image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixss453DmIttyJNYwFm0cJyRvG-LiTpH1dfGXGm6QtKOX78mUfU8-RzuiocvZn9RHl0nmphkfHVGZrXcwQR2drWRzsW2aKsf62aZAjNy_if1FFv0wN6SV3PZgmTAfVP_r6EJ43H3AgDhE/s1600/comment+here+flowers+5.png'

add post comment with image


img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB32EooBVNAmq9ScXXRd3mW4nL1WlXkbOlzRsrXXkouPtVObBervCi52Gfz4cEXLN6CfbvQoHnTnnYTYzhM4A8NQxCP7Vu9LwUs9WadXm722WmeQAkhscqGoyxmslvRNLh_LmEEBKH1PsI/s800/what-question-mark.gif'
substitute post comment with image
img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgMf9n0CLUcqncxkJT124ylfsfdiFngsERSwu_ciCYh4rO9Iqz_9Q_RYQucCxEXhMRCj4pm0w_kgyRSCH-zaV3bDztRlRyQDvDqntKuhnomAgyzvWJknx-keRIjMWyLVMLJYIdvWM5fM9o/s1600/thinking+man.gif'


Step 5. If you want to add some encouraging text beside your selected image, place it in behalf of the text Your Text Here

                <h4 id='comment-post-message'> <data:postCommentMsg/>Your Text Here</h4>

Step 6. Click preview to see the initial effect and then hit the Save button.


 In the above trick about replacing the texts "Post a Comment"  with an image or texts in order to encourage our viewers to leave a comment in our articles made. But the texts that we had put are not properly styled, so let us put some css on it to make it beautiful.
customize texts post comment

Customize Texts Beside the Image in "Post a Comment"


Step 1. Go to Blogger >> Template (Always Back-up Template) >> Edit HTML,


Step 2. Find/Control F the tag ]]></b:skin> and just above it paste the code below,



#comments h4 {
color: #4E555A;
font-size: 23px;
font-family: Arial, Verdana !important;
line-height: 1.6em !important;
font-weight: bold;
margin: 0 0 20px;
padding: 10px 0 0;
}

Short Customization (Optional):

1. Change #4E555A to change the color of the text beside the image. You can select hexadecimal colors here..
2.  Replace the value of font- size (23px) in order to change the size of the text.

Step 4. Always click Preview to see the initial result of the code applied then hit the Save button and you are done.To add texts below the line "Post a Comment", click here for the tutorial.
Hope you enjoy this short post and if you have some questions, don't forget to leave a comment below.
Subscribe to receive our free tutorials via email. Hope you like this post and Enjoy Blogging my friends!!!

How to Earn Money Through Adf.ly

In my previous post, I have shared an article on how to monetize your blog/website via Infolinks. Now in order to boost your earning power, why not shrink the  URL of some of your posts in the internet and at the same time  earn a revenue from it? In this section, I'm gonna show you the simple steps on how to make it.

earn revenue through adf.ly

How to Earn Money Through Adf.ly


Step 1. Go to Adf.ly and log in

revenue from adf.ly

Step 2. Look for a URL/ link in your blog/site that you want to shorten as shown in screenshot below,


Step 3.  Paste it inside the empty box in the adf.ly box and hit the shrink button


earn money via adf.ly

Step 4. Copy the shrink link and put that in your blog posts or anywhere you want  in  behalf of the original URL.
shrink url from adf.ly

It means that every time your users click that shrink URL, they will be directed to see adds from adf.ly site.
Thank you for reading this post and hope that this answers your problem pal.
Peace on Earth  and HAPPY Blogging To All  Of  Us!!!!