Blogger
Showing posts with label Blogger. Show all posts

Add Simple Pre Code for Blogger With Text Selection


We all are using Pre code instead of Blockquote to get a custom look and feel for our website or blog. But for using pre code you must add a big chunk of code in your Blog and sometimes it affect the loading time.

But there is always an alternative way exists. So In this tutorial, I will show you about adding a simple custom pre code with Simple CSS and JavaScript. This looks professional. And you can serve your widget code in different ways.
As usual first of all go to blogger template editor and copy and paste below code before ]]></b:skin> or </style>
/* CSS Simple Pre Code */
pre {
    background: #fff;
    white-space: pre;
    word-wrap: break-word;
    overflow: auto;
}
pre.code {
    margin: 20px 25px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
pre.code label {
    font-family: sans-serif;
    font-weight: normal;
    font-size: 13px;
    color: #444;
    position: absolute;
    left: 1px;
    top: 16px;
    text-align: center;
    width: 60px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}
pre.code code {
    font-family: "Inconsolata","Monaco","Consolas","Andale Mono","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
    display: block;
    margin: 0 0 0 60px;
    padding: 15px 16px 14px;
    border-left: 1px solid #d9d9d9;
    overflow-x: auto;
    font-size: 13px;
    line-height: 19px;
    color: #444;
}
pre::after {
    content: "double click to selection";
    padding: 0;
    width: auto;
    height: auto;
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 12px;
    color: #aaa;
    line-height: 20px;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.3s ease;
}
pre:hover::after {
    opacity: 0;
    visibility: visible;
}
pre.code-css code {
    color: #0288d1;
}
pre.code-html code {
    color: #558b2f;
}
pre.code-javascript code {
    color: #f57c00;
}
pre.code-jquery code {
    color: #78909c;
}
After that copy and paste below code just before </body>
<script type='text/javascript'>
//<![CDATA[
//Pre Auto Selection
$('i[rel="pre"]').replaceWith(function() {
    return $('<pre><code>' + $(this).html() + '</code></pre>');
});
var pres = document.querySelectorAll('pre,kbd,blockquote');
for (var i = 0; i < pres.length; i++) {
  pres[i].addEventListener("dblclick", function () {
    var selection = getSelection();
    var range = document.createRange();
    range.selectNodeContents(this);
    selection.removeAllRanges();
    selection.addRange(range);
  }, false);
}
//]]>
</script>
The above code helps you copy the Pre code content by double clicking inside it.

After that save your template.

You can call this custom pre code anywhere in your blog post or website using the below code,
<pre class='code code-html'><label>HTML</label><code>... HTML ...</code></pre>
<pre class='code code-css'><label>CSS</label><code>... CSS ...</code></pre>
<pre class='code code-javascript'><label>JS</label><code>... JavaScript ...</code></pre>
<pre class='code code-jquery'><label>Jquery</label><code>... JQuery ...</code></pre>
That's all. You can customize this code according to your wish. Thank You!

How To Remove All Transition Effects From Your Blog


Transition effects are one of the best CSS features that give awesome look and feel to your blog or website. We use this effects in page loading, image loading, buttons, mouse hover and etc.

But some of you don't like this effects. Some guys want clean blogs. If you are using the downloaded template from any websites, that includes a lot of transition effects. It is difficult to change entire CSS code.

But I'm giving a simple piece of code that will remove all of your transition effects from your blog.

Transition effect codes are usually written like this:
.transitions {    transition: all 0.5s ease-in-out;    -webkit-transition: all 0.5s ease-in-out;    -moz-transition: all 0.5s ease-in-out;}
If you want to disable transition effects without finding and deleting your transition CSS code. You can simply add the below CSS code into your CSS section to disable the transition effects. 

First of all, go to your blog > Templates > Edit HTML > Please find the below code:
]]></b:skin>
After that add the below code before the above code:
.fullload * {-webkit-transition:none!important;-o-transition:none!important;-moz-transition:none!important;-ms-transition:none!important;}
Not yet completed you have to follow one more tiny step. Again go to template editor and find this code
<body> 
And change it into:
<body class="fullload">
That's it, you completed the job. Now save the template and check your blog, it is working or not.

If it is not working, please comment below I will help you. Thanks for reading my blog, Stay tuned for more cool stuff.

How to Limit Number of Post in Blogger Search


Hi guys, after a long time now I'm active with my smartpik. This time, smartpik will give you a simple tip to limit the number of posts appear when you are searching in blogger search

This is an easy trick. You have to follow some simple steps. Ok! let's start

First of all, as usual, Open your blog in Blogger go to templates section click on the Edit HTML, Now you can see the cool simple single page blogger code. 

Then search for the search-box form from your blog. And that code looks like the below code.
<form id="searchbox" method="get" action="/search" autocomplete="off">
<input name="q" type="text" size="15" placeholder="Enter keywords here..." />
<input id="button-submit" type="submit" value=" "/>
</form>
After that add the highlighted code into your code.
<form id="searchbox" method="get" action="/search" autocomplete="off">
<input name="q" type="text" size="15" placeholder="Enter keywords here..." />
<input name='max-results' type='hidden' value='7'/>
<input id="button-submit" type="submit" value=" "/>
</form>
The value 7 is the number of posts that shown when anyone searches anything on your page. You can change that into your wish. It is simple editing and it works perfectly.

That's it. Stay tuned for more tips and tricks. Thanks for reading!!!

Box Social Media Plugin for Blogger


Hai Friends! Today I'm going to share a new social media plugin for the blogger. This plugin helps you to serve your social media links in an attractive look on your blogger sidebar. 

For those, who want to try this plugin make sure to take a look at this plugin by clicking on the below demo button.
Now if you like it and want to install it on your own blog then, simply follow the below simple steps and install it without any problem.

At the first, go to the blogger dashboard, Go to the "Template" section and then click on the "Edit Html" button.

This widget uses font Awesome , There for add the following CSS link above </head> tag:
<link href='//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' rel='stylesheet'/>
Then copy and paste the below code before ]]></b:skin> tag:
/* Social Media Box Widget */.sidebarbox-info h4{background:transparent;position:relative;padding:0;margin:0;border:0;text-align:center;font-size:120%;}.sidebarbox-img{position:relative;max-height:140px;overflow:hidden}.sidebarbox-img img {width:100%;transition:all .6s;}.sidebarbox-img:hover img{transform:scale(1.2) rotate(-10deg)}.sidebarbox-img:before{content:'';background:rgba(0,0,0,0.3);position:absolute;top:0;left:0;right:0;bottom:0;z-index:2;transition:all .3s}.sidebarbox-img:hover:before{background:rgba(0,0,0,0.6);}.aboutfloat-img{width:55%;position:absolute;top:35%;bottom:35%;left:22.5%;z-index:3}.sidebarbox-float{text-align:center;display:table;width:100%;height:100%}.sidebarbox-float a{background:transparent;color:#fff;padding:8px 14px;z-index:2;display:table-cell;width:100%;font-size:90%;text-transform:uppercase;vertical-align:middle;border:2px solid #fefefe;border-radius:3px;transition:all .3s}.sidebarbox-float:hover a{background:#e74c3c;color:#fff;border-color:transparent;}.sidebarbox-float a i{font-weight:normal;margin:0 5px 0 0}.sidebarbox-wrpicon{display:block;margin:15px auto;position:relative;}.sidebarbox-wrpicon .extender{width:100%;display:block;}.extender{text-align:center;font-size:16px}.extender .sidebarbox-icon{display:inline-block;border:0;margin:0;padding:0;width:32%;}.extender .sidebarbox-icon a{background:#ccc;display:inline-block;font-weight:400;color:#fff;padding:0 12px;line-height:32px;border-radius:3px;font-size:12px;width:70%;}.extender .sidebarbox-icon i{font-family:fontawesome;margin:0 3px 0 0}.sidebarbox-icon.fbl a{background:#3b5998}.sidebarbox-icon.twitt a{background:#19bfe5}.sidebarbox-icon.crcl a{background:#d64136}.sidebarbox-icon.fbl a:hover,.sidebarbox-icon.twitt a:hover,.sidebarbox-icon.crcl a:hover{background:#404040}.extender .sidebarbox-icon:hover a,.extender .sidebarbox-icon a:hover{color:#fff;}.sidebarbox-info{margin:10px 0 0 0;font-size:13px;text-align:center;}.sidebarbox-info p{margin:0px 0}.sidebarbox-info h4{margin-bottom:10px;font-size:16px;text-transform:uppercase;color:#444;font-weight:700;border-bottom:2px solid #e73138;padding:5px;}
Now go to the "Layout" section. Click on the add a widget option. (According to your need). Select Html/JavaScript from the popup menu. Add the below Html code in the Html/javascript box.
<div class='sidebarbox-img'>
        <img class="img-responsive" height="auto" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiOnzgvt8DHS72nbqLDzUvVKzeCvayuTqxHHCM77Ce_dqt13cLJiKnku6y6RJNJKUqMNT0qRSsHmAJ8FkvunVVbUSCsq6wVbIbOtGtwMuCSX05GfY04USF-5sT7iQ8afsl7B17_hxX1zJg/s720/synch-social-channel-with-email.jpg" width="300" />
        <div class='aboutfloat-img'><span class='sidebarbox-float'><a href='#' rel='nofollow' target='_blank' title='Join Our Site'><i class='fa fa-user'></i> Join Our Site</a></span></div>
    </div>
    <div class='sidebarbox-info'>
      <h4>Smartpik</h4>
      <p>Sharing Techniques</p>
    </div>
    <div class='sidebarbox-wrpicon'>
      <ul class='extender'>
        <li class='sidebarbox-icon fbl'>
          <a href='https://www.facebook.com/smartpik.in/' target='_blank' title='Follow Our Facebook'><i class='fa fa-facebook fa-fw'></i> Like</a>
        </li>
        <li class='sidebarbox-icon twitt'>
          <a href='https://twitter.com/smartpik_in' target='_blank' title='Follow Our Twitter'><i class='fa fa-twitter fa-fw'></i> Follow</a>
        </li>
        <li class='sidebarbox-icon crcl'>
          <a href='https://plus.google.com/u/0/+Smartpikin/' rel='nofollow' target='_blank' title='Follow Our Google+'><i class='fa fa-google-plus fa-fw'></i> Circle</a>
        </li>
      </ul>
  </div>
Then replace the highlighted codes with your picture, blog title, description, and links to your social media accounts.

That's it! I hope you like this plugin! Stay tuned for more cool plugins like this! Thanks for reading!

Auto Scrolling Recent Posts Bar Plugin with Thumbnail & Date for Blogger


Add new and responsive auto scrolling recent posts bar plugin with Thumbnail & Date in Blogspot blog - Hey guy's I'm back with a new Blogspot plug, called Recent post bar. This plugin will help you to show the recent posts of your blog in a very stylish way. This bar plugin is not like others, the best part of this plugin is that it will show the thumbnail of the post with date and the Author name.

For those, who want to try this plugin make sure to take a look at this plugin by clicking on the below demo button.
Now if you like it and want to install it on your own blog then, simply follow the below simple steps and install it without any problem.

At the first, go to the blogger dashboard, Go to the "Template" section and then click on the "Edit Html" button.

Now copy the below CSS code and paste it just before ]]></b:skin>
/* CSS News Ticker */.ticker-wrap{display:block;text-align:center;margin:20px auto 0 auto;padding:2px;background:#fefefe;border:1px solid rgba(0,0,0,0.1);border-left:5px solid #3cc091}.ticker-wrap>span{display:inline-block;background:#fefefe;padding:0;font:700 13px 'roboto',sans-serif;}.ticker-wrap>span>a{color:#222;text-decoration:none}#ticker{height:45px;overflow:hidden;background:#fefefe;text-align:left}
#ticker ul{padding:0;margin:0;list-style:none}
#ticker ul li{height:45px;white-space:nowrap}
#ticker ul li img{float:left;width:35px;height:35px;margin:5px 7px 5px 5px}
#ticker ul li h3{margin:0;font:700 16px 'roboto',sans-serif}
#ticker ul li h3 a{color:#333;text-decoration:none;line-height:25px!important}
#ticker ul li .tickermeta{font:400 13px 'roboto',sans-serif;line-height:20px!important;color:#999}
After that, copy the below JavaScript code and paste it just before </body>.
<script type='text/javascript'>//<![CDATA[// News tickerfunction getauthor(t){for(var e=0;e<t.length;e++)var i=t[e].name.$t;return i}function getmeta(t){var e=[];e[1]="Jan",e[2]="Feb",e[3]="Mar",e[4]="Apr",e[5]="May",e[6]="Jun",e[7]="Jul",e[8]="Aug",e[9]="Sep",e[10]="Oct",e[11]="Nov",e[12]="Dec";var i=t.substring(0,4),a=t.substring(5,7),n=t.substring(8,10),r=e[parseInt(a,10)]+" "+n+" "+i;return r}function arlinadesignTicker(t){var e=document.querySelector("#ticker"),i=t.feed.entry,a="<ul id='ticket-wrapper-inner'>";if(i){for(var n=0;n<i.length;n++){for(var r=i[n],s=0;s<r.link.length;s++)if("alternate"==r.link[s].rel){var l=r.link[s].href;break}try{var o='<img src="'+r.media$thumbnail.url+'"/>'}catch(t){var o=""}var u=r.title.$t,c=getauthor(r.author),d=getmeta(r.published.$t);a+="<li>"+o+'<h3><a href="'+l+'">'+u+'</a></h3><div class="tickermeta"><span>'+c+"</span> - <span>"+d+"</span></div></li>"}a+="</ul>",e.innerHTML=a}$("#ticker").vTicker()}!function(t){var e={speed:700,pause:4e3,showItems:1,mousePause:!0,height:0,animate:!0,margin:0,padding:0,startPaused:!1},i={moveUp:function(t,e){i.animate(t,e,"up")},moveDown:function(t,e){i.animate(t,e,"down")},animate:function(e,i,a){var n=e.itemHeight,r=e.options,s=e.element,l=s.children("ul"),o="up"===a?"li:first":"li:last";s.trigger("vticker.beforeTick");var u=l.children(o).clone(!0);if(0<r.height&&(n=l.children("li:first").height()),n+=r.margin+2*r.padding,"down"===a&&l.css("top","-"+n+"px").prepend(u),i&&i.animate){if(e.animating)return;e.animating=!0,l.animate("up"===a?{top:"-="+n+"px"}:{top:0},r.speed,function(){t(l).children(o).remove(),t(l).css("top","0px"),e.animating=!1,s.trigger("vticker.afterTick")})}else l.children(o).remove(),l.css("top","0px"),s.trigger("vticker.afterTick");"up"===a&&u.appendTo(l)},nextUsePause:function(){var e=t(this).data("state"),i=e.options;e.isPaused||2>e.itemCount||a.next.call(this,{animate:i.animate})},startInterval:function(){var e=t(this).data("state"),a=this;e.intervalId=setInterval(function(){i.nextUsePause.call(a)},e.options.pause)},stopInterval:function(){var e=t(this).data("state");e&&(e.intervalId&&clearInterval(e.intervalId),e.intervalId=void 0)},restartInterval:function(){i.stopInterval.call(this),i.startInterval.call(this)}},a={init:function(n){a.stop.call(this);var r=jQuery.extend({},e);n=t.extend(r,n);var r=t(this),s={itemCount:r.children("ul").children("li").length,itemHeight:0,itemMargin:0,element:r,animating:!1,options:n,isPaused:n.startPaused?!0:!1,pausedByCode:!1};t(this).data("state",s),r.css({overflow:"hidden",position:"relative"}).children("ul").css({position:"absolute",margin:0,padding:0}).children("li").css({margin:n.margin,padding:n.padding}),isNaN(n.height)||0===n.height?(r.children("ul").children("li").each(function(){var e=t(this);e.height()>s.itemHeight&&(s.itemHeight=e.height())}),r.children("ul").children("li").each(function(){t(this).height(s.itemHeight)}),r.height((s.itemHeight+(n.margin+2*n.padding))*n.showItems+n.margin)):r.height(n.height);var l=this;n.startPaused||i.startInterval.call(l),n.mousePause&&r.bind("mouseenter",function(){!0!==s.isPaused&&(s.pausedByCode=!0,i.stopInterval.call(l),a.pause.call(l,!0))}).bind("mouseleave",function(){(!0!==s.isPaused||s.pausedByCode)&&(s.pausedByCode=!1,a.pause.call(l,!1),i.startInterval.call(l))})},pause:function(e){var i=t(this).data("state");if(i){if(2>i.itemCount)return!1;i.isPaused=e,i=i.element,e?(t(this).addClass("paused"),i.trigger("vticker.pause")):(t(this).removeClass("paused"),i.trigger("vticker.resume"))}},next:function(e){var a=t(this).data("state");if(a){if(a.animating||2>a.itemCount)return!1;i.restartInterval.call(this),i.moveUp(a,e)}},prev:function(e){var a=t(this).data("state");if(a){if(a.animating||2>a.itemCount)return!1;i.restartInterval.call(this),i.moveDown(a,e)}},stop:function(){t(this).data("state")&&i.stopInterval.call(this)},remove:function(){var e=t(this).data("state");e&&(i.stopInterval.call(this),e=e.element,e.unbind(),e.remove())}};t.fn.vTicker=function(e){return a[e]?a[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void t.error("Method "+e+" does not exist on jQuery.vTicker"):a.init.apply(this,arguments)}}(jQuery),$(function(){var t=document.createElement("script");t.src="http://"+$(".ticker-wrap").data("domain")+"/feeds/posts/summary?alt=json&callback=arlinadesignTicker",t.type="text/javascript",document.getElementsByTagName("body")[0].appendChild(t)});//]]></script>
Note:- Add the below css code to make this plugin responsive just after @media only screen and (max-width:640px) (Not Required).
.artabs-menu li span,.top-menunavi li.infoarlina,.top-menunavi li.searchbutton,.ticker-wrap {display:none;}}
Click on the save template button to apply these changes.

Now go to the "Layout" section. Click on the add a widget option. (According to your need). Select Html/JavaScript from the popup menu. Add the below Html code in the Html/javascript box.
<div class='ticker-wrap' data-domain='www.smartpik.in'>
<div id='ticker'>
</div>
Click on the orange save button then, refresh your blog and see the magic. Note: Don't forget to replace the above-highlighted text with your own blog URL.

That's it! I hope you like this plugin! Stay tuned for more cool plugins like this! Thanks for reading!

Sidebar Featured Posts Slider for Blogger


Hai Friends, Today I'm going to share a new blogger plugin. Everyone wants to show their best posts on the home page through a featured post widget. One of the best ways to display the featured post is using the slider plugin. There is so many sliders are available on the web and today I'm sharing a premium looking responsive featured post slider for the sidebar.
You can also use this plugin for displaying ads or any other contents on your blogs sidebar. First of all, go to your blogger dashboard and navigate to the Template section and click Edit HTML. Then add the below CSS code before the </head> tag.
<style type='text/css'>#slide{height:auto}#slidepager{width:auto;margin:0 auto;text-align:center;display:block!important}#slidepager&gt;span{display:inline-block;width:10px;height:10px;margin:10px 5px 0;background:rgba(0,0,0,.2);text-align:center;border-radius:100%;font-size:17px;text-decoration:none;transition:background .3s linear 0s;cursor:pointer}#slidecontent{margin:0 auto;transition:opacity .3s linear 0s;color:#AAA;background:#fff;border:1px solid #dedede;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:relative;overflow:hidden;height:auto}.slidepanel{width:100%;padding:10px 15px 15px;-moz-box-sizing:border-box;word-wrap:break-word;-webkit-box-sizing:border-box;box-sizing:border-box}.slidepanel&gt;h2{text-align:left;font-size:20px;font-weight:bold;line-height:1.2em;color:#333;margin:0 auto 10px;text-transform:capitalize;padding:0!important}.slidepanel&gt;p,.slidepanel&gt;span{font-size:14px;font-weight:normal;line-height:1.2em;color:#777;margin:10px 0 0!important}.slidepanel a{color:#333;text-decoration:none;font-weight:700;transition:all .4s ease-out}#slide:hover .slidepanel a{color:#e8554e}.slideimage{width:100%;height:200px;margin:0;padding:0;position:relative}.slideimage img{width:100%;height:100%;margin-bottom:-4px}.clear{clear:both}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes bounceInLeft{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}@keyframes bounceInLeft{0%,100%,60%,75%,90%{-webkit-transition-timing-function:cubic-bezier(.215,.61,.355,1);transition-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}100%{-webkit-transform:none;transform:none}}</style>
And also add the below script before the </body> tag.
<script type='text/javascript'>
//<![CDATA[
function _(e){return document.getElementById(e)}function pager(e){_("slidecontent").style.opacity=0;for(var n=0;n<ba.length;n++)ba[n].style.background="rgba(0,0,0,.2)";ba[e].style.background="rgba(0,0,0,.7)",setTimeout(function(){_("slidecontent").innerHTML=bca[e],_("slidecontent").style.opacity=1},300)}function bubbleSlide(){bi++,bi==ba.length&&(bi=0),pager(bi)}var ba,bi=0,intrvl;window.addEventListener("load",function(){ba=_("slidepager").children,intrvl=setInterval(bubbleSlide,7e3)});
//]]>
</script>
After these two adding click the save template button. Then navigate to the blogger layout section. Now select Add a Gadget option from the sidebar of your layout and select HTML/JavaScript gadget.

Then copy and paste the below HTML code inside it and replace the highlighted lines in the code with yours.
<div id='slide'>
<div id='slidecontent'>
<div class="slideimage"><a href="#"><img height="200" src="Image URL" width="300"/></a></div><div class="slidepanel"><h2><a href="#">Post Title</a></h2></div><div class="clear"></div>
<script>
//<![CDATA[
var bca = [
'<div class="slideimage bounceInLeft"><a href="#"><img height="200" src="Image URL" width="300"/></a></div><div class="slidepanel bounceInLeft"><h2><a href="#">Post Title</a></h2></div><div class="clear"></div>',
'<div class="slideimage bounceInLeft"><a href="#"><img height="200" src="Image URL" width="300"/></a></div><div class="slidepanel bounceInLeft"><h2><a href="#">Post Title</a></h2></div><div class="clear"></div>',
'<div class="slideimage bounceInLeft"><a href="#"><img height="200" src="Image URL" width="300"/></a></div><div class="slidepanel bounceInLeft"><h2><a href="#">Post Title</a></h2></div><div class="clear"></div>',
'<div class="slideimage bounceInLeft"><a href="#"><img height="200" src="Image URL" width="300"/></a></div><div class="slidepanel bounceInLeft"><h2><a href="#">Post Title</a></h2></div><div class="clear"></div>',
'<div class="slideimage bounceInLeft"><a href="#"><img height="200" src="Image URL" width="300"/></a></div><div class="slidepanel bounceInLeft"><h2><a href="#">Post Title</a></h2></div><div class="clear"></div>'
];
//]]>
</script>
</div>
<div id='slidepager'>
<span onclick='pager(0); clearInterval(intrvl);' style='background:rgba(0,0,0,.7);'></span>
<span onclick='pager(1); clearInterval(intrvl);'></span>
<span onclick='pager(2); clearInterval(intrvl);'></span>
<span onclick='pager(3); clearInterval(intrvl);'></span>
<span onclick='pager(4); clearInterval(intrvl);'></span>
</div>
</div>
In this above code, you can see 6 different featured post sections (1+5). Note that add the same URLs in the first two highlighted codes for the correct working of this plugin.

The best image resolution for this plugin is 300px x 200px. After all, see the results on your blog. Thanks for reading!

Simple Sitemap or Table of Contents For Blogger


How to Install a Simple Sitemap In Blogger - This time, I will share how to install lightweight and simple label based sitemap on the blog. Although the contents of this Sitemap look simple, but visitors will still love it because it is fairly lightweight widget without long loading events.

This widget displays a list of posts on your blog that is sortable by the labels on the blog. Here's a demo of the widget's content:
How Is it? If you want to put up this Sitemap to your blog? If so, please follow these steps: 

Sign into Blogger > Select Menu page > Then create new page posts > There is no choice and go to HTML Compose tab (upper left corner)> Then add the below code inside it:
<div style="background-color:none; max-height:1200px; margin:auto;overflow:auto;padding:3px;text-align:left;width:100%;"><script src="https://googledrive.com/host/0B-AYvC9Y1riaQUdLTlVzT1A3cUk"></script><script src="/feeds/posts/default?max-results=999&amp;alt=json-in-script&amp;callback=loadtoc"></script></div>
Publish page and finished. Not too hard right? That's it! I hope you like this Plugin! Stay tuned for more dynamic Plugins! Thanks for reading!