How To Make Rotating Image Holder For Blogger Images







Life



See live demo here:

Hover effects create variation on what is so called common look. We simply like new things. We love to deal with it.Today, I am going to share with you another trick in blogging through a rotating hover image holder for a specific image on your blog.This blog was made possible right after I visited the blog of Md. Atiqur Rahman (Atik) .This tutorial is divided into to parts. Putting HTML in your blogger post editor's page and adding CSS in your blogger template source code.

Add Rotating Image Holder for Blogger Images


Part A. Adding HTML CODE to Blogger Editor's Page


Step 1. Go to Blogger Dashboard >> Post or New Post Step

2. Switch it to HTML Code and Paste the code below

<div align="center">
<div class="imgholder">
<div class="outer1 circle">
</div>
<div class="outer2 circle">
</div>
<br />
<br />
<br />
<figure>
   <img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhM2rSYrGngVenAbSWGCOu7z3MM39_OU9fC17vF8cF5Nc0kxC5WkOc5f4MU21QWXKg6doC8q8QHYKl2FBV8xb8SQ23lA5V1tcQVHTFDaUdEOWU21qsKIrIbk_ZJ0aw1q95_ty3xYtcRdVjq/s250/pizap.com13945459190261.jpg" />
   <figcaption class="caption">God's Wonder</figcaption>
  </figure>
 </div>
</div>

Step 3. Replace the orange bold text with your image url and the red bold text with your image capation

Recommended: How to upload images to blogger and get the image link

Step 4. Save your work and you are halfway done.

Part B: Adding CSC to Blogger Template Source Code


1. Go to Blogger Dashboard >> Template>> Edit HTML
2. Look at the CODE below

]]></b:skin>

Step 3.  Copy the CODE below and paste it above this code ]]></b:skin>


.imgholder:hover img {opacity: 1;filter: alpha(opacity = 100);transform: scale(1,1);-ms-transform: scale(1,1);-moz-transform: scale(1,1);-webkit-transform: scale(1,1);}.imgholder img {position: absolute;left: 0;top: 0;width: 120px;height: 120px;z-index: 2;/* border-radius: 100px; */-moz-border-radius: 100px;-webkit-border-radius: 100px;opacity: 0.3;filter: alpha(opacity = 30);box-shadow: 0 0 5px #000;-moz-box-shadow: 0 0 5px #000;/* -webkit-box-shadow: 0 0 5px #000; */transform: scale(0.5,0.5);-ms-transform: scale(0.5,0.5);-moz-transform: scale(0.5,0.5);-webkit-transform: scale(0.5,0.5);transition: opacity 1s, transform 1s ease-in-out 0.3s;-moz-transition: opacity 1s, -moz-transform 1s ease-in-out 0.3s;-webkit-transition: opacity 1s, -webkit-transform 1s ease-in-out 0.3s;}.imgholder:hover .outer1 {border-color: #0088EA #7FC9FF #0088EA #7FC9FF;box-shadow: 0 0 10px #0285E2;-moz-box-shadow: 0 0 10px #0285E2;-webkit-box-shadow: 0 0 10px #0285E2;transform: rotate(-10deg);-ms-transform: rotate(-10deg);-moz-transform: rotate(-10deg);-webkit-transform: rotate(-10deg);}.imgholder:hover .outer2{ opacity:0.9; filter: alpha(opacity = 90); transform: scale(1,1) rotate(-10deg); -ms-transform: scale(1,1) rotate(-10deg); -moz-transform: scale(1,1) rotate(-10deg); -webkit-transform: scale(1,1)rotate(-10deg);}.imgholder .outer1 {top: -8px;left: -8px;width: 120px;height: 120px;z-index: 2;border: 8px solid;border-color: #DEEBFC;box-shadow: 0 0 3px #AFD3FF;-moz-ox-shadow: 0 0 3px #AFD3FF;-webkit-box-shadow: 0 0 3px #AFD3FF;background: #ffffff;background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #e2efff 100%);background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#ffffff), color-stop(100%,#e2efff));/* background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%); */background: -o-radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);background: -ms-radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);background: radial-gradient(center, ellipse cover, #ffffff 0%,#e2efff 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e2efff',GradientType=1 );transform: rotate(90deg);-ms-transform: rotate(90deg);-moz-transform: rotate(90deg);-webkit-transform: rotate(90deg);transition: transform 1.8s ease-in-out, box-shadow 1s ease-out, border-color 1.5s;-moz-transition: -moz-transform 1.8s ease-in-out, -moz-box-shadow 1s ease-out, border-color 1.5s;-webkit-transition: -webkit-transform 1.8s ease-in-out, -webkit-box-shadow 1s ease-out, border-color 1.5s;}.imgholder .circle {position: absolute;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;}.imgholder .outer2 {top: -18px;left: -18px;width: 136px;height: 136px;z-index: 1;border: 10px solid;border-color: #D6E5FC #9BC8FF #D6E5FC #9BC8FF;box-shadow: 0 0 20px #8EB9FF;-moz-box-shadow: 0 0 20px #8EB9FF;-webkit-box-shadow: 0 0 20px #8EB9FF;opacity: 0;filter: alpha(opacity = 0);transform: scale(1.3,1.3) rotate(180deg);-ms-transform: scale(1.3,1.3) rotate(180deg);-moz-transform: scale(1.3,1.3) rotate(180deg);-webkit-transform: scale(1.3,1.3) rotate(180deg);transition: opacity 0.5s, transform 0.7s ease-out;-moz-transition: opacity 0.5s, -moz-transform 0.7s ease-out;-webkit-transition: opacity 0.5s, -webkit-transform 0.7s ease-out;}.imgholder .circle {position: absolute;border-radius: 100px;-moz-border-radius: 100px;-webkit-border-radius: 100px;}.imgholder:hover figcaption {top: 85%;}.imgholder figcaption {position: absolute;left: -5px;top: 31%;width: 130px;color: #004E87;font-weight: bold;text-shadow: -1px -1px 0 #fff;z-index: 4;transition: top 0.5s ease-out;-moz-transition: top 0.5s ease-out;-webkit-transition: top 0.5s ease-out;
}


Step 4. Save your work and you are done with this tutorial.

Customization:


Focus first on the image holder on its default and with a mouse hover effects on it.
on default for image outer 1: Change the hexadecimal color #DEEBFC with another one. Please try our hexadecimal colors here.

With mouse hover for image holder outer 1. Replace the hexadecimal colors #0088EA #7FC9FF #0088EA #7FC9FF; with another set of colors. The arrangement is from top (#0088EA ), right (#7FC9FF), bottom (#0088EA) and left (#7FC9FF) respectively.

With mouse hover for image holder outer 2. Just change the hexadecimal colors #D6E5FC #9BC8FF #D6E5FC #9BC8FF with another sets. The arrangement is from top ( #D6E5FC ), right (#9BC8FF ), bottom (#D6E5FCand left (#9BC8FFrespectively.

For the image holder caption on its default setting, change  #004E87 to the color of the image caption. You can also change the margin by costumizing the top and left attributes of the CSS under .imgholder figcaption

Lastly, for the hover effect of the image caption, replace the margin attribute which is 85% for the top margin depending on the position of your caption on the image on your post.


Take care friends!


Add your Profile Pic or Avatar next to Post Titles in Blogger



Adding a Profile image next to your blog post titles gives a more personal look to your site. It indicates that a real human is working behind the site and the site doesn’t generate auto content with no attention to readers. You have seen web entrepreneurs using their profiles pictures on their blog next to each one of their posts. An example includes shoemoney. So lets add this beautiful add-on to your blogger blogs and make things even more neater. Kindly see a demo first:









*Add a Profile Image Next To Post Titles


1.Go To Blogger > Design > Edit HTML

2.Backup your template

3.Search for .post h3 or .post h2

4.You will see a similar code like this one,

.post h3 { color: #7CA2C4; font-size: 20px; font-family: Arial, sans-serif;; font-weight: normal; margin: 0px; padding: 0px 10px 0 47px; }

  • Replace the above code with this one,
.post h3 { background:url(IMAGE LINK OF YOUR PROFILE PIC) no-repeat top left; color: #289728; font-size: 20px; font-family: Arial, sans-serif;; font-weight: normal; height:45px; margin: 0px; padding: 0px 10px 0 47px; line-height:1.1em; }

Now replace bolded yellow text with Image URL of your avatar. Your avatar should be 40px by 40px in size. For better visibility choose a profile pic with white background and coloured border like this one,


  • To Learn how to upload images on blogger and get their URLs read,
Replace #289728 with the post title color code of your blog. You can find this title colour from the code which was already present. In my case it is #7CA2C4 so I will replace #289728 with #7CA2C4

5. Save your template and you are done!

Visit your blogs to see an interesting new change. If you faced any problem then do not hesitate to let your brother know. Would be a pleasure to help you out. Have Fun!

I am so grateful to bloggerspice for the idea about this post.



HAVE A NICE DAY



How To Integrate Properly Font Awesome Icons In Blogger Blog


Since then, Blogging is rapidly changing daily. Previously, we used heavy images intended for decorating our blogger template. But due to the use of mass graphics template loading time dramatically increase on account of slow loading visitors are certainly not interested to stay on blog a certain site. In the mean time, many new features have revealed and after this we would able to use different widget and plugin within our Blogger template. At least, for now we can easily use vector icon instead of images without any java script html coding through Font Brilliant. Font Awesome bundled 369 Icons under one font that's best for using in a website. And it also helps designer intended for optimizing their web-site's icons. Now almost all of the professional Blogger
template designers are using Font Awesome.


*WHAT IS FONT AWESOME


Font Awesome is a pictographic language of web-related actions. It is also known as iconic font. For example if you write predefine font code then it will display as vector icon in your Site. And the most positive feature is that you can easily scale the icons that included in Font Awesome file. Not only icon you can also customize icon's size, color, drop shadow as well as able to add animated effect and so on by the help of CSS coding.Originally Font Awesome designed for Bootstrap but now using almost in every platform. Bootstrap is a collection of SVG (Scalable Vector Graphic) icons which can resize to any size.

In my Blogger template I am using 3.2.1 version of Font awesome icon like in comment, date, quote. But recently it has released 4.0 version with additional new 11 icons. The difference between older version and newer version, simply in coding. Suppose for home icon older version code is \f015 but in case of newer version code is fa-home.
Features of Font Awesome-

Font Awesome included 369 iconic font and the number of icons will increase with new versions.

Note: This very light to load, as a result it won't affect on your template loading time.

*HOW TO ADD FONT AWESOME 4.0.3 INTO BLOGGER?


Including Font awesome in Blogger template is very easy.
Just you have to follow some simple steps from below-

Step 1. Go to https://www.blogger.com and Sign in to your account

Step 2. From Blogger Dashboard click on ->Template ->Edit HTML

Step 3. And locate the <head> section in your Blogger template section in your Blogger template Step 4 Finally copy following line of markup and paste it below
Step 4. Finally copy following line of markup and paste it below <head>

<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"/>

Step 5 Now simply hit the Save button.

*HOW TO USE FONT AWESOME FOR ADDING ICONS?


You will get a full list of Font Awesome icon code which can be used in blog or website. Just you have to choose the icon and get the code from Font awesome site then simply add the code. Though I have told before that we have to use CSS for applying Font awesome code so you have to pick some CSS class name. For Example most of the Font Awesome code start with fa (Font Awesome). For home icon the proper code is fa-home and now we have to use tag.
<i class="fafa-home"></i>

Font Awesome Icon can be Edit in different way. But mostly effective by CSS coding. You can apply CSS Style on any icon. Just take the class name, and write a new CSS style as shown below. For example the below CSS code block can be add before on HTML source or you can add the code inside

fa-laptop {font-size: 32px;color: #033;padding: 8px;border: 1px solid #000;float:left;}

And the HTML code is below

<i class="fa fa-laptop"></i>

This will display a Laptop colored icon with border. And the color has added by CSS code.

*Resizing Icon


You can increase or decrease the icon size by using different code like fa-1g, fa-2x, fa-3x etc.

<i class="fa fa-desktop"></i><i class="fa fa-desktop fa-1g"></i><i class="fa fa-desktop fa-2x"></i><i class="fa fa-desktop fa-3x"></i><i class="fa fa-desktop fa-4x"></i><i class="fa fa-desktop fa-5x"></i>

*Adding Spinning effect



You can easily add spinning effect in any icon. The code for spinning effect is fa-spin. And the whole code will like below-

<i class="fa fa-spinner fa-spin">

Here you have to change the fa-spinner icon code for spin different icons.

*Add Icons with List Style


Generally for displaying icons in list style you can use the below code block. If you want to add more icon then just add extra line of the code block.

<ul class="fa-ul">
<li style="text-align: left;"><i class="fa-li fa fa-desktop"></i>Desktop Icon</li>
<li style="text-align: left;"><i class="fa-li fa fa-thumbs-up"></i>Thumbs Up Icon</li>
<li style="text-align: left;"><i class="fa-li fa fa-fighter-jet"></i>Fighter Jet Icon</li>
</ul>

*Add Icons with Stake Style


Under this style you can display icons horizontally two, Three or more icons in a row at a time.

<span class="fa-stack fa-lg">
<i class="fa fa-square-o fa-stack-2x"></i><i class="fa fa-desktop fa-stack-1x"></i>
</span>
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i><i class="fa fa-thumbs-up fa-stack-1x fa-inverse"></i>
</span>
<span class="fa-stack fa-lg">
<i class="fa fa-camera fa-stack-1x"></i><i class="fa fa-fighter-jet fa-stack-2x text-danger"></i>
</span>

To Get the all icon's code please visit the below link
  • http://fontawesome.io/icons/
Hope this tutorial will able to answer all of your questions about Font Awesome. Still Confused? Then feel free to leave a comment below.

I am grateful to bloggespice for this idea.



HAVE A NICE DAY!


How To Make Text Slider In Blogger



After observing the about page of OLX.com, I decided to make a slider not for the image but a slider intended for the texts. You can put this technique in your about page, in your sidebar or anywhere you like. Furthermore, this innovation also adds professionalism to your works. Without much words to say, let's make a texts slider for your Blogger blog!








*Text Slider In Blogger Blog


Step 1. Go to Blogger Dashboard >> Edit HTML (back-up your Template)
Step 2. Find the code below,

</head>

Step 3. Just above that code in step 2, paste the code below,

<script src='//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'/> <script> $(document).ready(function(){ $(&#39;.timeline-item&#39;).first().addClass(&#39;active&#39;); $(&#39;article.2006&#39;).slideToggle(); $(&#39;.timeline-item&#39;).click(function(e) { e.preventDefault(); var clickid = $(this).attr(&#39;id&#39;); var active = $(&#39;.timeline-item.active&#39;); var activeid = active.attr(&#39;id&#39;); if ( $(this).hasClass(&#39;active&#39;) ) { return; } else { active.removeClass(&#39;active&#39;); $(this).addClass(&#39;active&#39;); $(&quot;article.&quot;+ activeid ).slideToggle(); $(&quot;article.&quot;+ clickid ).slideToggle(); } }); $(&quot;.carousel span:first&quot;).fadeIn(); jQuery.fn.timer = function() { if(!$(&#39;.carousel&#39;).children(&quot;span:last-child&quot;).is(&quot;:visible&quot;)){ $(&#39;.carousel&#39;).children(&quot;span:visible&quot;) .fadeOut() .next(&quot;span&quot;).fadeIn(); } else{ $(&#39;.carousel&#39;).children(&quot;span:visible&quot;) .fadeOut() .end().children(&quot;span:first&quot;) .fadeIn; $(&quot;.carousel span:first&quot;).fadeIn(); } } // timer function end window.setInterval(function() { $(&#39;.carousel&#39;).timer(); }, 1500);     }); </script> - See more at: http://mybloggersnipers.blogspot.com/2014/07/how-to-make-text-slider-in-blogger.html#sthash.buJVxrHr.dpuf

Step 4. Look for the code ]]></b:skin> . Above it, paste the code below,

.carousel span {width: 50%;font-size: 40px;text-align: center;position: absolute;font-family: oswald;left: 25%;color:#158aee;display: none;}

Step 5. Save your Template and you're halfway done!

Note: Every time you want to integrate this style in your post just copy the code below,

<div class="carousel"><span style="display: none;"><a href="http://btt-testblog1.blogspot.com/">MYBLOGGERSNIPERS</a></span>     <span style="display: none;">offers</span>     <span style="display: none;">Latest Blogger tutorials</span>     <span style="display: none;">tips</span>     <span style="display: none;">tricks</span>     <span style="display: none;">news</span>     <span style="display: none;">tools and resources</span>     <span style="display: none;">presented in more understandable</span>     <span class="last" style="display: none;">and easy way</span>    </div>

*Replace the italic bold texts with your own texts

You can also add link to each group of texts. See the first word MYBLOGGERSNIPERS as an sample.
Change also the time 1500 to speed up or slower the text to appear. The bigger the numerical value the slower it appears and smaller the numerical value the earlier it appears.
Finally, for the css above, you can change the font size 40px. Greater numerical value the bigger its size and vice versa. And the text color #158aee. Select  various hexadecimal color for your guide.




Enjoy your day friends!



How To Customize Blogger Blog Using Template Designer


Adding css to our template makes our blog more pretty to look but sometimes we face encounter especially if we are new in using the new Blogger template design. We find difficulty in searching this code ]]></b:skin>. But don't worry because there is still another and more easy way of putting the css code in your template and that this through Template Designer.

(Supposing that you are going to add borders to your sidebar and below is the set of code).

.sidebar h2 {

border-top:1px solid #000000;
border-right :1px solid #000000;
border-bottom :1px solid #000000;
border-left :5px solid #000000;

margin- top;0
margin- right;0
margin- bottom;0
margin- left;0
padding:0 0.2em;
line-height:1.5em;
}


Simply follow the steps below;

Step 1. Go to your Blogger Dashboard >> Customize




Step 2. Click Advanced then scroll down and select Add CSS



Step 3. At the right side is a blank field, this is intended for the css area. Paste the css code above in this place.




Step 4. And finally click the Apply to Blog button


Note:

  • You can only access or edit those CSS using this technique whom you added manually in your Blogger Template,meaning not the default one.
  • There's  no need to put the tag <style> paste your css here</style>.
  • If you replace or change a new template on your blog, all the css that you  have added will be automatically be deleted.


Hope  this tutorial is helpful to you in some other ways. God Bless Pal! 



How To Add Widget Beside Post Body


In this post, I will teach you how to add any widget, it would be an ad or any code (recent comment widget, facebook like box, popular posts widget and the like) that you want to place just beside your written article or post body section of your blog/site. Have a look at the image below.



*Adding Widget Beside Post Body Individually




Step 1. Go to Blogger >>New Post or (select another post)
Step 2. Copy the code below and paste it above your written post/article (it should be in the top most corner) .


<div class="widget-beside-post" style="clear: left; display: inline-block; float: left;height: 400px; margin: 12px 20px -50px 0pxwidth: 234px;">Your widget/ad code here....Your widget/ad code here....Your widget/ad code here....Your widget/ad code here....</div>

Example below:

<div class="widget-beside-post" style="clear: left; display: inline-block; float: left; height: 400px; margin: 12px 20px -50px 0px; width: 234px;">
<iframe src="//www.facebook.com/plugins/likebox.php?href=  https://www.facebook.com/pages/Bloggingtipsandtrix/533310753378603?ref=hl&amp;width=234&amp;height=400&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=false&amp;header=true&amp;" style="background: #fafafa; border: 0 solid #ddd; height: 337px; overflow: hidden; width: 234px;"></iframe>
</div>

In the above example, I used my facebook like box widget to appear beside my written article. 

Step 3. Save/Publish/Update your work.

*Adding Widget/Ad To All Your Written Articles/Posts Automatically



Step 1. Go to Blogger Dashboard >> Template >> Edit HTML ( have a back-up of your template)
Step 2. Find the code below, choose the third occurrence of the code

<data:post.body/>

Step 3. Just above the code in step 2, paste the code below



<b:if cond='data:blog.pageType == &quot;item&quot;'>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<div class="widget-beside-post" style="clear: left; display: inline-block; float: leftheight: 400px; margin: 12px 20px -50px 0pxwidth: 234px;">
Your widget/ad code here....Your widget/ad code here....Your widget/ad code here....Your widget/ad code here....
</div></b:if></b:if>

Step 4. Save your Template and your done!

Simple Customization:


  • Change left to right if you want to position the widget in the right side of your post.

  • Adjust the width  "234px" and the height" 400px" of your widget depending on your likeness.
Easy and Simple! isn't it?
If you have problems encountered in following this tutorial, you can leave your comment below. Your thoughts are highly valued here in MBS.



Always Say A Prayer! 

How To Create Professional Image Slideshows With Jquery In Blogger


Having a stunning image slideshow is not only for the one who runs an image blog. It can be also used to improve your user's experience and in return will increase blog traffic. Furthermore, it will boast your readers to discuss or comment since people will be more interactive if they will not only read texts but also see images. Search engine robot will appreciate more to your post which lead to a better position in search engine results page. I've learned this trick from MBT and do some changes on the script,css and the HTML to have a difference. See first the live DEMO.



Step 1. Go to your Blogger Dashboard >> Post or any post you want
Step 2. Copy the the code below and paste it in your Blogger Post editor page ( be sure to switch it to HTML mode).

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script src="http://s3slider-original.googlecode.com/svn/trunk/s3Slider.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function() {
   $('#BTT-slider').s3Slider({
      timeOut: 3000
   });
});
</script>
<style>
#BTT-slider {
   width: 590px; /* Keep it 20px-40 px greater than ACTUAL Image size */
   height: 335px;
   position: relative;
   overflow: hidden;
   margin-left: 0;
}
#BTT-sliderContent {
   width: 590px;
   position: absolute;
   top: 0;
   margin-left: 0;
}
.BTT-sliderImage {
   float: left;
   position: relative;
   display: none;  top: 0;
   border:1px solid #ddd;
}
.BTT-sliderImage span {
position: absolute;
    font: 10px/15px sans-serif,Arial, Helvetica;
    padding: 10px 10px;
    background-color: #000;
    color: #fff;
    filter:'alpha(opacity=70)';
    -moz-opacity: .5;
    -khtml-opacity: .5;
    opacity: .5;
    text-align:justify;
}
.BTT-sliderImage span a {
text-decoration:underline;
color:#FE6602;
}
.clear {
   clear: both;
}
.top {
    top: 0;
    left: 0;
    width: 570px !important;
    height: 70px;
}
.bottom {
    bottom: 100px;
    left: 0;
    width: 570px !important;
    height:70px;
}
.left {
    left: 0;
    top: 0;
    width: 100px !important;
    height: 335px;
}
.right {
    right: 30px;
    bottom: 90px;
    width: 100px !important;
    height: 335px;
}
</style>

<br />
<div id="BTT-slider">
<ul id="BTT-sliderContent">
<li class="BTT-sliderImage"> 
<a href="http://www.mybloggersnipers.blogspot.com/"><img src="IMAGE URL HERE" /></a>
<span class="top"><h3>
FIRST HEADING HERE</h3>
DESCRIPTIONS HERE</span>
</li>
<li class="BTT-sliderImage">
<a href="http://www.mybloggersnipers.blogspot.com/"><img src="IMAGE URL HERE" /> </a>
<span class="right"><h3>
SECOND HEADING HERE</h3>
DESCRIPTIONS HERE</span>
</li>
<li class="BTT-sliderImage">
<a href="http://www.mybloggersnipers.blogspot.com/"><img src="IMAGE URL HERE" /></a>
<span class="bottom"><h3>
THIRD HEADING HERE</h3>
DESCRIPTIONS HERE</span>
</li>
<li class="BTT-sliderImage">
<a href="http://www.mybloggersnipers.blogspot.com/"><img src="IMAGE URL HERE" /> </a>
<span class="left"><h3>
FOURTH HEADING HERE</h3>
DESCRIPTIONS HERE</span>
</li>
<div class="clear BTT-sliderImage">
</div>
</ul>
</div>
<br />

Note: Remove the (code in red bolded texts ) jQuery library in the first line of this set of code if you had already added a jQuery library in your template.


Customization:


Replace the link "http://www.bloggingtipsandtrix.blogspot.com/"with your own URL.
Change "IMAGE URL HERE"with the URL of your image. See here how to get the image url of the image.
Replace the Italic bold texts "FOURTH HEADING HERE and DESCRIPTIONS HERE" with your heading and descriptions respectively.
If you want to see the appearance of the slider from left and so on , write it at the first span class and the next position as well.
Change the   timeOut: 3000 to your prefered lapse time of the slider to appear. The higher the number the slower it to appear and the lesser the time is the more fast the next image slide  to appear.


How To Add Another Image Slide To The Slider


Simply add the code below above the line <div class="clear BTT-sliderImage">


<li class="BTT-sliderImage">
<a href="http://www.bloggingtipsandtrix.blogspot.com/"><img src="IMAGE URL HERE" /> </a>
<span class="left"><h3>
FOURTH HEADING HERE</h3>
DESCRIPTIONS HERE</span>
</li>

Step 3. Save your work and cheers ;-)




GOOD DAY EVERYONE!


Definition List