Articles by "Blogger Widgets"

Add-on Wordpress Plugin Add-ons Mozilla Adsense adsense trik Advertising Wordpress plugin Alexa Aplikasi Program Backlink Berita Bing Bisnis Online Blockquote Blog And Magazine Wordpress Themes Blog Reviews Blog SEO Blog Stuff blog tutorial Blogger Gadgets blogger hack Blogger SEO Blogger SEO Tips Blogger Template Blogger Templates Blogger Tool Blogger Tricks blogger trik Blogger Tutorials Blogger Widgets Business Calendars Wordpress Plugin CodeCanyon Contact Form Corporate Wordpress Theme Creative Creative Market Creative Wordpress Theme CSS CSS3 Custom Domain Directory & Listings DMOZ Dofollow Dunia eCommerce WordPress Plugin eCommerce Wordpress Theme Education Wordpress Theme Elegantthemes Wordpress English Post Entertainment Wordpress Theme Extensions Pack Font FontAwesome Food Forms Wordpress Plugins Free Software Free Stuff Galleries Wordpress Plugin GenesisFramework Google Chrome Google Pagerank Halaman Health & Beauty Hosting HTML Interface Elements WordPress Plugin Intermezzo JavaScript jQuery KlasikThemes Kode HTML Komentar Kontes SEO Lintas Berita Magazine Blogger Template Marketing Media Membership Menus Miscellaneous Miscellaneous Wordpress Theme Multipurpose Blogger Template Music And Brands News Blogger Template Opini Page Loading Personal Photography PHP Scripts PHP SEO Portfolio Posting Premium Blogger Templates Products Project Management Tools ProjectPanorama Promosi Blog RealEstate Rekomendasi Relevanssi Request Responsive Blogger Template Restaurants & Cafes Wordpress Theme Retail Wordpress Theme Search Engine SEO Blogspot SEO Tips SEO Tools Share Button Sidebar Slider Social Bookmark Social Networking WordPress Plugin Social Subscription Widget Software Soliloquywp StudioPress Tag Kondisional Technology Wordpress Theme Teknologi Template TheEventsCalendar Theme ThemeForest Templates Themeisle ThemeJunkie Themes Pack Ting Tips dan Trik Blogging Tokoh Tools Blogging Travel Trik Tutorial Blogging Uncategorized Unik Utilities WordPress Plugin Website Widget dan Plugin Widgets Wikipedia WooCommerce WooThemes Wordpress Plugin Wordpress Premium Themes Wordpress SEO Plugins Wordpress ThemeForest Themes Wordpress Themes Wordpress Tricks Wordpress Tutorials WP Plugins WP Sliders WPMUdev WPRocket Yithemes Yoast Youtube
Showing posts with label Blogger Widgets. Show all posts

Increase image size in Blogger Official Featured Post Widget
Hello guys,In previous post we had talked about how to add featured post gadget in blogger template,Today in this article we are going to teach you how to increase and decrease image size in blogger official featured widget.This widget is very good for blogger to show or highlight the best post in blog or website.But there is a problem with image size from the post.There is four image size possibilities you can use for image size.

  • Small Image- 200 x 133 pixels
  • Medium Image- 320 x 213 pixels
  • Large Image- 400 x 267 pixels
  • X-Large Image- 640 x 427 pixels
  • Original Size Image- Default Size
The problem is if you implement featured post widget in homepage it show different size,so today we are going to solve this problem by using javascript.To grab this trick just follow the steps mentioned below.

installation steps:

Step 1: Go to Blogger Dashboard >> Layout >> Add a Gadgets. And Add "Featured Post" (If you already Installed it skip to the next step)

Step 2: Now Click on Template >> Edit HTML, now find this code "FeaturedPost1" and you will see this code.
<b:widget id='FeaturedPost1' locked='false' title='Featured post' type='FeaturedPost'>
    <b:includable id='main'>
        <!-- Only display title if it's non-empty -->
        <b:if cond='data:title != &quot;&quot;'>
            <h2 class='title'><data:title/></h2>
        </b:if>
        <b:include name='content' />
        <b:include name='quickedit' />
    </b:includable>
    <b:includable id='content'>
        <div class='post-summary'>
            <b:if cond='data:showPostTitle and data:postTitle != &quot;&quot;'>
                <h3><a expr:href='data:postUrl'><data:postTitle/></a></h3>
            </b:if>
            <p>
                <data:postSummary/>
            </p>
            <b:if cond='data:showFirstImage and data:postFirstImage != &quot;&quot;'>
                <img class='image' expr:src='data:postFirstImage' />
            </b:if>
        </div>
        <style type='text/css'>
            .image {
                width: 100%;
            }
        </style>
    </b:includable>
</b:widget>
Step 3:Now replace the above code from  <b:widget...</b:widget> with the following below code.
<b:widget id='FeaturedPost1' locked='false' title='Featured post' type='FeaturedPost'>
    <b:includable id='main'>
        <!-- Only display title if it's non-empty -->
        <b:if cond='data:title != &quot;&quot;'>
            <h2 class='title'><data:title/></h2>
        </b:if>
        <b:include name='content' />
        <b:include name='quickedit' />
    </b:includable>
    <b:includable id='content'>
        <div class='post-summary'>
            <b:if cond='data:showPostTitle and data:postTitle != &quot;&quot;'>
                <h3><a expr:href='data:postUrl'><data:postTitle/></a></h3>
            </b:if>
            <p>
                <data:postSummary/>
            </p>
            <b:if cond='data:showFirstImage and data:postFirstImage != &quot;&quot;'>
                <img class='image' expr:src='data:postFirstImage' />
                <script>
                    // path: The image url
                    // replacement: The replacement string
                    function replaceSize(path, replacement) {
                        var parts = path.split('/'); // break the string to an array
                        parts[7] = replacement; // this is the path segment to replace
                        return parts.join('/'); // glue the array back into a string
                    }
                    document.getElementById("FeaturedPost1").getElementsByTagName("img")[0].src = replaceSize('<data:postFirstImage/>', 's1600');
                </script>
            </b:if>
        </div>
        <style type='text/css'>
            .image {
                width: 100%;
            }
        </style>
    </b:includable>
</b:widget>
Now Save your template,Done !
We hope this article helped you to learn How To Increase And Decrease Image Size In Blogger Official Featured Post gadget.If you liked this article please Join us on Facebook,Twitter,Google Plus.

How To Add Review Widget/gadget/ In Blogger Template


Hello guys,today in this article we are going to teach you how to add review widget in blogger template.Before review widget/gadget can be use only in wordpress or any other paid platform.Now it's time to implement review widget tool in blogger and now it's possible.Have you ever thought to convert your blogger template into a review friendly blog or website? However from this review widget will able to grab visitors attention to your post and suppose you are having a blog or website like smartphones reviews,Movie reviews,Software reviews site,any game or gadget reviews site.And you website or blog is hosted on blogger platform so blogger area is not that much broad like wordpress,but from now  you can use review widget to give ranking to your desired content.Review widget have 2 features like you can show same review on all blog pages or you can choose individual reviews for each and every blog posts.Finally to grab this widget follow the steps mentioned below.

how to add fixed review widget for every post in blogger

To display the same ranking or ratings/score to all posts of your blogger follow this step to add widget in blogger post footer.

installation steps:

Step 1. Log in to your Blogger account and Go to your Blogger Dashboard
Step 2. Now Click on -> Template -> Edit HTML
Step 3. Now Search for ]]></b:skin> by Pressing Ctrl+F keys. 
Step 4. Now  Paste the below code above/before ]]></b:skin> 
/*Review Widget by www.bloggersstand.com*/
.BstandReview-summary{position:absolute;z-index:2;bottom:0;font-size:14px;left:14px;right:14px}
.BstandReview-summary{opacity:1}
.BstandReview-summary p,.BstandReview-summary h3{margin:0}
.BstandReview-summary h3{font-size:20px}
.BstandReview-summary p{padding:10px}
.BstandReview-summary a{color:#FFF}
.bsd-review{border:1px solid #E7E7E7;margin-bottom:15px}
.review-item,.item-summary:first-child{border-bottom:1px solid #E7E7E7}
.review-item{padding:12px}
.review-item:last-child{border-bottom:0}
.rev-value-outer{background-color:rgba(0,0,0,0.10);overflow:hidden;box-shadow:inset 0 0 4px rgba(0,0,0,0.2)}
.rev-value{height:10px;background-color:#FF0000;box-shadow:0 0 5px rgba(0,0,0,0.3)}
.review-circle{padding-bottom:5px;overflow:hidden;font-size:14px}
.review-circle span{font-weight:400;float:right}
.review-box {width:75%}
.review-box{display:review-box;vertical-align:middle;margin-top:0;margin-bottom:0;float:left;margin:10px 0;margin-right:2%}
.review-wrapper .review-box{display:block; width:20%}
.item-summary{overflow:hidden;text-align:justify}
.item-summary h4{margin:0 0 10px;display:inline-block;padding:3px 8px;background-color:#FF0000;color:#FFF;text-transform:uppercase;font-size:16px}
.item-summary span{display:block}
.review-circle-place{padding:10px 12px;vertical-align:top}
.review-wrapper{border-left:1px solid #E7E7E7;width:140px;text-align:center;font-weight:600;padding:10px 10px 20px;vertical-align:bottom;background-color:rgba(0,0,0,0.03)}
.rev-score{font-size:50px}
.srev-place{position:absolute;top:0;right:0;color:#FF0000;font-size:30px;font-weight:600;width:50px;height:50px;text-align:center;line-height:50px;background-color:rgba(255,255,255,0.50)}
.items .srev-place{right:auto;left:0;font-size:17px;width:30px;height:30px;line-height:30px}
.c100.p51 .slice,.c100.p52 .slice,.c100.p53 .slice,.c100.p54 .slice,.c100.p55 .slice,.c100.p56 .slice,.c100.p57 .slice,.c100.p58 .slice,.c100.p59 .slice,.c100.p60 .slice,.c100.p61 .slice,.c100.p62 .slice,.c100.p63 .slice,.c100.p64 .slice,.c100.p65 .slice,.c100.p66 .slice,.c100.p67 .slice,.c100.p68 .slice,.c100.p69 .slice,.c100.p70 .slice,.c100.p71 .slice,.c100.p72 .slice,.c100.p73 .slice,.c100.p74 .slice,.c100.p75 .slice,.c100.p76 .slice,.c100.p77 .slice,.c100.p78 .slice,.c100.p79 .slice,.c100.p80 .slice,.c100.p81 .slice,.c100.p82 .slice,.c100.p83 .slice,.c100.p84 .slice,.c100.p85 .slice,.c100.p86 .slice,.c100.p87 .slice,.c100.p88 .slice,.c100.p89 .slice,.c100.p90 .slice,.c100.p91 .slice,.c100.p92 .slice,.c100.p93 .slice,.c100.p94 .slice,.c100.p95 .slice,.c100.p96 .slice,.c100.p97 .slice,.c100.p98 .slice,.c100.p99 .slice,.c100.p100 .slice{clip:rect(auto,auto,auto,auto)}
.c100 .bar,.c100.p51 .fill,.c100.p52 .fill,.c100.p53 .fill,.c100.p54 .fill,.c100.p55 .fill,.c100.p56 .fill,.c100.p57 .fill,.c100.p58 .fill,.c100.p59 .fill,.c100.p60 .fill,.c100.p61 .fill,.c100.p62 .fill,.c100.p63 .fill,.c100.p64 .fill,.c100.p65 .fill,.c100.p66 .fill,.c100.p67 .fill,.c100.p68 .fill,.c100.p69 .fill,.c100.p70 .fill,.c100.p71 .fill,.c100.p72 .fill,.c100.p73 .fill,.c100.p74 .fill,.c100.p75 .fill,.c100.p76 .fill,.c100.p77 .fill,.c100.p78 .fill,.c100.p79 .fill,.c100.p80 .fill,.c100.p81 .fill,.c100.p82 .fill,.c100.p83 .fill,.c100.p84 .fill,.c100.p85 .fill,.c100.p86 .fill,.c100.p87 .fill,.c100.p88 .fill,.c100.p89 .fill,.c100.p90 .fill,.c100.p91 .fill,.c100.p92 .fill,.c100.p93 .fill,.c100.p94 .fill,.c100.p95 .fill,.c100.p96 .fill,.c100.p97 .fill,.c100.p98 .fill,.c100.p99 .fill,.c100.p100 .fill{position:absolute;border:0.08em solid #FF0000;width:0.84em;height:0.84em;clip:rect(0em,0.5em,1em,0em);-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}
.pie-fill,.c100.p51 .bar:after,.c100.p51 .fill,.c100.p52 .bar:after,.c100.p52 .fill,.c100.p53 .bar:after,.c100.p53 .fill,.c100.p54 .bar:after,.c100.p54 .fill,.c100.p55 .bar:after,.c100.p55 .fill,.c100.p56 .bar:after,.c100.p56 .fill,.c100.p57 .bar:after,.c100.p57 .fill,.c100.p58 .bar:after,.c100.p58 .fill,.c100.p59 .bar:after,.c100.p59 .fill,.c100.p60 .bar:after,.c100.p60 .fill,.c100.p61 .bar:after,.c100.p61 .fill,.c100.p62 .bar:after,.c100.p62 .fill,.c100.p63 .bar:after,.c100.p63 .fill,.c100.p64 .bar:after,.c100.p64 .fill,.c100.p65 .bar:after,.c100.p65 .fill,.c100.p66 .bar:after,.c100.p66 .fill,.c100.p67 .bar:after,.c100.p67 .fill,.c100.p68 .bar:after,.c100.p68 .fill,.c100.p69 .bar:after,.c100.p69 .fill,.c100.p70 .bar:after,.c100.p70 .fill,.c100.p71 .bar:after,.c100.p71 .fill,.c100.p72 .bar:after,.c100.p72 .fill,.c100.p73 .bar:after,.c100.p73 .fill,.c100.p74 .bar:after,.c100.p74 .fill,.c100.p75 .bar:after,.c100.p75 .fill,.c100.p76 .bar:after,.c100.p76 .fill,.c100.p77 .bar:after,.c100.p77 .fill,.c100.p78 .bar:after,.c100.p78 .fill,.c100.p79 .bar:after,.c100.p79 .fill,.c100.p80 .bar:after,.c100.p80 .fill,.c100.p81 .bar:after,.c100.p81 .fill,.c100.p82 .bar:after,.c100.p82 .fill,.c100.p83 .bar:after,.c100.p83 .fill,.c100.p84 .bar:after,.c100.p84 .fill,.c100.p85 .bar:after,.c100.p85 .fill,.c100.p86 .bar:after,.c100.p86 .fill,.c100.p87 .bar:after,.c100.p87 .fill,.c100.p88 .bar:after,.c100.p88 .fill,.c100.p89 .bar:after,.c100.p89 .fill,.c100.p90 .bar:after,.c100.p90 .fill,.c100.p91 .bar:after,.c100.p91 .fill,.c100.p92 .bar:after,.c100.p92 .fill,.c100.p93 .bar:after,.c100.p93 .fill,.c100.p94 .bar:after,.c100.p94 .fill,.c100.p95 .bar:after,.c100.p95 .fill,.c100.p96 .bar:after,.c100.p96 .fill,.c100.p97 .bar:after,.c100.p97 .fill,.c100.p98 .bar:after,.c100.p98 .fill,.c100.p99 .bar:after,.c100.p99 .fill,.c100.p100 .bar:after,.c100.p100 .fill{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}
.c100{position:relative;font-size:120px;width:1em;height:1em;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;float:left;margin:0 15px 10px;border:9px solid #dcdcdc;border:9px solid rgba(0,0,0,0.1)}
.c100 *,.c100 *:before,.c100 *:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
.c100 > .rev-score{position:absolute;width:100%;z-index:1;left:-0.28em;top:-0.28em;width:3.35em;line-height:3.35em;font-size:0.3em;display:block;text-align:center;white-space:nowrap;-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;transition-property:all;-webkit-transition-duration:0.2s;-moz-transition-duration:0.2s;-o-transition-duration:0.2s;transition-duration:0.2s;-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}
.c100:after{position:absolute;top:0.08em;left:0.08em;display:block;content:" ";-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;background-color:transparent;width:0.85em;height:0.85em;-webkit-transition-property:all;-moz-transition-property:all;-o-transition-property:all;transition-property:all;-webkit-transition-duration:0.2s;-moz-transition-duration:0.2s;-o-transition-duration:0.2s;transition-duration:0.2s;-webkit-transition-timing-function:ease-in;-moz-transition-timing-function:ease-in;-o-transition-timing-function:ease-in;transition-timing-function:ease-in}
.c100 .slice{position:absolute;width:1em;height:1em;clip:rect(0em,1em,1em,0.5em);top:-0.074em;left:-0.074em}
.c100:hover{cursor:default}
.c100:hover > .rev-score{color:#FF0000;-webkit-transform:scale(1.35)}
.c100:hover:after{top:0.04em;left:0.04em;width:0.92em;height:0.92em}
.top-revscrore{float:left;width:150px;text-align:center;height:150px;margin-right:10px;font-weight:600}
customization : 


To change the review widget color replace #FF0000 with your hex color value.you can choose color from our tool by visiting the color wheel picker and color hex code generator.

Step 5. Now search for <data:post.body/> by Pressing Ctrl+F keys,You will find three times but we will stop on second one.

Step 6. Now Paste the below code above/before <data:post.body/>
<div class="bsd-review">
<div class="review-item"><div class="review-circle">Widgets<span>8</span></div><div class="rev-value-outer"><div class="rev-value" data-value="8" style="width:80%"></div></div></div>
<div class="review-item"><div class="review-circle">Design<span>6</span></div><div class="rev-value-outer"><div class="rev-value" data-value="7" style="width:70%"></div></div></div>
<div class="review-item"><div class="review-circle">Graphics<span>5</span></div><div class="rev-value-outer"><div class="rev-value" data-value="8" style="width:80%"></div></div></div>
<div class="review-item"><div class="review-circle">SEO<span>9</span></div><div class="rev-value-outer"><div class="rev-value" data-value="9" style="width:90%"></div></div></div>

<div class="item-summary"><div class="review-circle-place review-box"><h4>Summary</h4><span>Bloggersstand.Com is a website for blogger tutorials,wordpress tutorials,blogspot responsive templates,tricks and tips for both and also provide free resources for websites and blog,also explain the smart earning method through online</span></div>
<div class="review-wrapper review-box"><div class="overall-inner"><div class="c100 p75"><div class="rev-score">7.5</div><div class="slice"><div class="fill"></div><div style="transform: rotate(270deg);" class="bar"></div></div></div><span>Overall Score</span></div></div></div>
</div>
Customization : 
  • To change review widget width,repace all data-value="8" and style="width:80%"
  • To change the post summaryn replace the above summary.
  • To change the overall rating replace the “rev-score">7.5 with different value.
Done !

How to Add review widget in selected blog posts

installations steps:

Step 1. First follow the above 4 steps.
Step 2. Now when you create a  new post then from post editor select HTML view and now add the below code.
<div class="bsd-review">
<div class="review-item"><div class="review-circle">Widgets<span>8</span></div><div class="rev-value-outer"><div class="rev-value" data-value="8" style="width:80%"></div></div></div>
<div class="review-item"><div class="review-circle">Design<span>6</span></div><div class="rev-value-outer"><div class="rev-value" data-value="7" style="width:70%"></div></div></div>
<div class="review-item"><div class="review-circle">Graphics<span>5</span></div><div class="rev-value-outer"><div class="rev-value" data-value="8" style="width:80%"></div></div></div>
<div class="review-item"><div class="review-circle">SEO<span>9</span></div><div class="rev-value-outer"><div class="rev-value" data-value="9" style="width:90%"></div></div></div>

<div class="item-summary"><div class="review-circle-place review-box"><h4>Summary</h4><span>Bloggersstand.Com is a website for blogger tutorials,wordpress tutorials,blogspot responsive templates,tricks and tips for both and also provide free resources for websites and blog,also explain the smart earning method through online</span></div>
<div class="review-wrapper review-box"><div class="overall-inner"><div class="c100 p75"><div class="rev-score">7.5</div><div class="slice"><div class="fill"></div><div style="transform: rotate(270deg);" class="bar"></div></div></div><span>Overall Score</span></div></div></div>
</div>
The best place for the review widget is post footer,so paste the above code after all your new post content.
That's it folks!
We hope this article helped you to learn How To Add  Review Widget/gadget in your blogger template.If you liked this article please Join us on Facebook,Twitter,Google Plus.

How to Add Page Loads Loading Image Effect In Blogger Template
Hello Folks,Today in this article we are going to explain you how to display loading image/animated effect on your blogger website or blog.This tutorial will help you to learn to use any gif animation as loading animation effect.using this feature will improve your website or blog loading experience.

how to generate a loading animation effect

First we need to create or find a matching content or beautiful loading gif image for blogger template.If you are a graphics designer then you can easily create a page loading animation gif image.But if you are not related to graphics then you don't need to worry, Now days there are many websites available over the internet where we can easily get a loading animated image and you can customize it according to your Blogger template. We have mentioned few websites to create gif page load image below,check them out.
  • http://loading.io/
  • http://www.loadinfo.net/
  • http://preloaders.net/
  • http://cssload.net/
  • www.ajaxload.info
  • http://www.chimply.com/Generator#classic-spinner,animatedCircle

How to add animated loading image effect in blogger template

Step 1. Log in to your Blogger Account and Go to your Blogger Dashboard
Step 2. Now Click on -> Template -> Edit HTML->
Step 3. Now Search ]]></b:skin> By Pressing Ctrl+F 
Step 4. Finally Now Copy the below CSS and Paste the CSS above ]]></b:skin>
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('Image URL') 50% 50% no-repeat rgb(249,249,249);
}

customization:

Change Image URL with your gif image url.

Step 5. Now Search For <body> or <body ....> and add the below tag just below <body> tag.
<div class="loader"></div>
Step 6. Now Search for </head> By Pressing Ctrl+F and copy the below Script and paste it above/before </head>.
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
    $(".loader").fadeOut("slow");
})
</script>
Now Save your template..Done !

If your blogger template already contains the above jquery,then you don't need to follow the above step i.e Step 6.Just Skip !
We hope this article helped you to learn How To Add Page Loads Loading Animated Effect In Blogger Template.If you liked this article please Join us on Facebook,Twitter,Google Plus.

How to create Add a ads container Slot Below Header And Above Footer In Blogger Template
Hello Folks,Today in this article we are going to teach how to add Add a gadget Slot in Blogger Layout in other words you can say Add a gadget Container/Part/section.In this we will implement add a gadget container below of header and above of template footer section.From this tutorial you will able to create adsense ads or a third party ads add a gadget container in your blogger template.The main feature of these kinds of template is that you can place advertisement on various places within your Blogger template.The best place for displaying ad banner is below Blog header and above Blog footer.They can increase their advertisement revenue.So we will create a ad slot below Blogger headline where Blog or website visitors will see advertisement easily while reading your content , secondly we will  add ads slot above footer section where website readers use page for navigation and they can see advertisements too.To grab this ads slot add a gadget container in blogger layout follow the steps mentioned below.

How to add a ads slot add a gadget in blogger layout

installation steps:

Step 1. Log in to your Blogger Account and Go to your Blogger Dashboard
Step 2. Click on -> Template -> Edit HTML->
Step 3. Now Find the ]]></b:skin> By Pressing Ctrl+F 
Step 4. Now Copy the below code and Paste it Above /Before]]></b:skin>
/*Ad Slot widget by http://www.bloggersstand.com */
.banner, .banner2 {margin:0 auto;text-align:center;overflow:hidden;}
.banner .widget,.banner2 .widget {width:970px;max-width:100%;margin:0 auto;background:transparent;text-align:center;overflow:hidden;}
.banner img, .banner iframe,.banner2 img, .banner2 iframe{display:block;margin:0 auto;text-align:center;}
/*Ad Slot widget Layout Design by http://www.bloggersstand.com */
#layout #banner,#layout #banner2 {background-color:#444;padding:20px 0!important;margin-bottom:20px;}
#layout #banner .widget,#layout #banner2 .widget{width:80%;margin:5px auto!important;overflow:hidden;float:none}
#layout #banner .add_widget,#layout #banner2 .add_widget{width:80%;margin:5px auto!important;overflow:hidden;float:none}

Customization: 

  • To Display Adsense responsive ads with different width  alter width:970px; with your desired value.
  • To control widget slot width in Blogger Layout alter the width:80%; with your desired value.
Step 5. Now search for <div id='main-wrapper'> or <div id='post-wrapper'> or <div id='content-wrapper'>, that code means is wrapping up your website or blog post container and sidebar.

Step 6.  Now Copy the below code and Paste it Above /Before <div id='main-wrapper'>.
<b:section class='banner section' id='banner' maxwidgets='1' showaddelement='yes'/>
After completing above process,you have successfully created ad weight container slow below header in your blogger template.

Step 7. Now to create advertisement slot above Blog Footer section. search for the following code:
<footer id='footer-wrapper' itemscope='' itemtype='http://schema.org/WPFooter'>
or  <div id='footer-wrapper'>
Step 8. Now Copy the below code and Paste it Above /Before <div id='main-wrapper'> 
<b:section class='banner2 section' id='banner2' maxwidgets='1' showaddelement='yes'/>
<div class='clear'/>

 Now Click on Save Template..You Are Done !!

Check your blogger layout,now you can see 2 ads slots has created below header section and above footer.now your template is ready to show responsive adsense ads.

We hope this article helped you to learn How To Add  Responsive Social Media Share Buttons Below/Footer Blogger Post.If you liked this article please Join us on Facebook,Twitter,Google Plus.

Social Media Subscribe Us With FontAwesome Icons Widget For Blogger
Hello guys,Today we are going to teach you how to install sidebar subscription box widget in blogger template by using fontawesome icon and social media profile links and backlink too.This stylish subscription box gadget have some good features like, Fully Responsive Design,very easy to customize the colors of the subscription box,and it also have social media profile links in bottom,and most important we have used fontawesome icons to display social media icons and it has hover effect too.Subscribe us widget is purely made with CSS and HTML.To grab this widget/gadget box just follow the steps mentioned below.

How to add subscribe us/Join Our Newsletter widget in blogger template

installation steps:

Step 1. Open https://www.blogger.com and Sign in to your account
Step 2. Now From Blogger Dashboard click on ->Template ->Edit HTML 
Step 3. Now Search for the following <head> tag and paste the below CSS Link After <head>.
<link href='//netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css' rel='stylesheet' type='text/css'/>.
Note:If your blogger template already have fontawesome icons CSS link then skip the above step. 

Step 4. Now save your template.
Step 5. Now go to your Layout section.
Step 6. Now Click on "Add a Gadget" Button and Add "HTML/JAVASCRIPT" Widget.
Step 7. Now paste the following code in it and click on save.
<style>
/* ----------------------------------------------------
Sidebar Social Subscription Box Widget
Designed by :: http://www.Bloggersstand.com
Please Do Not Remove The Credits.
-----------------------------------------------------*/
#bloggersstand {
  padding: 0;
  padding-bottom: 5px;
  font-family: inherit;
  display: block;
  margin: 0;
  width: 100%;
  border-radius: 1px;
  border: 0;
  background: #363636;
}
#bloggersstand .main_tagline {
  padding: 0px 0px;
  line-height: 2.5em;
  font-size: 26px;
  margin: 0;
  height: 95px !important;
  overflow: hidden;
  font-weight: normal;
  color: #FFF;
  text-align: center;
  border: 0;
  background-color: #FF5959;
}
#bloggersstand .email_icon {
  display: table;
  margin: -35px auto 0px;
  font-size: 25px;
  padding: 12px;
  height: 25px;
  width: 25px;
  background-color: #363636;
  color: #FFF;
  border-radius: 50px;
  border: 10px solid #FFFFFF;
  line-height: 0;
}
#bloggersstand p {
  font-size: 15px;
  color: #F9F9F9;
  text-shadow: 0px -1px 0px #000;
  line-height: 27px;
  padding: 5px 10px 5px;
  text-align: center;
  width: 80%;
  margin: 5px auto 20px;
  border-bottom: 2px solid #6A6A6A;
  border-radius: 20px;
}
#bloggersstand .rssform {
  padding: 0;
  margin: 0 auto;
  display: block;
}
#bloggersstand .rssform input {
  padding: 8px;
  margin: 20px auto 15px;
  font-size: 13px;
  color: #000;
  text-align: center;
  display: block;
  font-family: inherit;
  font-weight: normal;
  width: 90%;
  height: 38px;
  text-transform: uppercase;
  outline: none !important;
  border: 1px solid #FFFFFF;
  border-radius: 1px;
  background-color: #FCFCFC;
  box-sizing: border-box !important;
}
#bloggersstand .rssform .button:hover {
  background: #000000;
}
#bloggersstand .rssform .button {
  background: #FF5959;
  color: white!important;
  border: 1px solid #FFFFFF;
  margin-top: 15px;
  outline: none !important;
  transition: all .3s ease-in-out;
  padding: 5px 2px !important;
  float: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: normal;
  cursor: pointer;
}
#bloggersstand .bottom_lock_policy {
  background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuPCe69uKxVsWWN84_eGv2ZOnzTCVfxzzp2ukq3z8kFh-RdDQdC34mUqwq6ADbDWEQFM-Xre6IkzRC_4FbF0KCgG1BBvacTH_B2Vrf0WD1zIpzsvvRlD6atD1_cFdohGy8bjT72NvfY159/s1600/Lock-bloggersstand.png) no-repeat 3% -2px;
  color: #959595;
  text-align: center;
  font-size: 12px;
  margin: 0;
  padding: 3px;
  line-height: 25px;
}
#bloggersstand .bottom_lock_policy a {
  color: #959595;
  text-decoration: none !Important;
}
#bloggersstand .social_profiles {
  line-height: 1.2em;
  display: table;
  float: none;
  margin: 0px auto;
  text-align: center;
  min-width: 157px;
  padding: 5px 0px;
  border: 0;
}
#bloggersstand .social_profiles a:hover {
  color: #FFF;
  background-color: #666666;
  border-color: #FFF;
}
#bloggersstand .social_profiles a {
  color: #000000;
  margin: 0 5px;
  text-align: center;
  float: left;
  display: table;
  padding: 4px 5px;
  background-color: #FFFFFF;
  border-radius: 50px;
  border: 2px solid #2D2D2D;
  width: 15px;
  height: 15px;
  line-height: 0;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
#bloggersstand form {
  margin-bottom: 10px !important;
}
</style>
<div id="bloggersstand">
            <div class="main_tagline">Join Our Newsletter</div><div class="email_icon"><i class="fa fa-envelope"></i></div>
                 <p>Get Free Updates On Blogging Tips & News From Bloggersstand</p>
   <div class="rssform">
            <form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=bloggersstand', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
            <input type="text" name="email" placeholder="Enter your email address...">
            <input type="hidden" value="bloggersstand" name="uri">
            <input type="hidden" name="loc" value="en_US">
            <input value="Join Now" class="button" type="submit">
            </form>
            </div>
      <div class="bottom_lock_policy">Safe With us! | <a href="http://www.bloggersstand.com/2015/12/add-sidebar-social-subscription-gadget-for-blogger-template.html">Get This Widget</a>   </div>
   <div class="social_profiles">
   <a href="http://www.facebook.com/bloggersstand" target='_blank' rel='nofollow' title="Join on Facebook"><i class="fa fa-facebook"></i></a>
   <a href="http://www.twitter.com/bloggersstand" target='_blank' rel='nofollow' title="Follow on Twitter"><i class="fa fa-twitter"></i></a>
   <a href="http://plus.google.com/+bloggersstand" target='_blank' rel='nofollow' title="Follow on Google+"><i class="fa fa-google-plus"></i></a>
   <a href="http://www.pinterst.com/bloggersstand" target='_blank' rel='nofollow' title="Follow on Pinterest"><i class="fa fa-pinterest"></i></a>
   </div>
            </div>

 Customization:

  • To change the  background color or color scheme of the subscription widget replace #666666  with your desired color hex value.you can choose colors from here.Color wheel picker,Color code generator.
  • To change the headlines of the widget replace above line in red colors.
  • To replace the social media profile links and rss change above lines in green color with your username.

That's it folks !
We hope this article helped you to learn How To Add  Responsive Social Media Subscribe Us With FontAwesome Icons Widget For Blogger Template.If you liked this article please Join us on Facebook,Twitter,Google Plus.

Add Social Media Counter Widget Using Font Awesome Icon In Blogger
Hello Folks,Today in this article we are going to teach you how to add social media Font Awesome Icon with counter widget in blogger template.You can Add Social Counter Widget in your Blogger Sidebar. This will help to Grow your Social Media Fan and Follower. Your Blog or Website visitors will able to visit your social media sites from your Website easily.This design comes from wordpress,but we have modified for blogger platform users.To install this widget/gadget follow the steps mentioned below.

installation steps:

Step 1. Log in to your account and Go to your Blogger Dashboard
Step 2. Now click on -> Template -> Edit HTML
Step 3. Now search for the following <head> tag by pressing Ctrl+F 
Step 4. Paste the FontAwesome Icon stylesheet After/Below <head> "if your blog already have fontawesome icon stylesheet then you don't need to do it again,just skip this step."
<link href='//netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css' rel='stylesheet'/>
Step 5. Now Search for ]]></b:skin> by pressing Ctrl+F
Step 6. Now paste the following CSS Before/Above ]]></b:skin>
/* Social Media with counter Widget by www.bloggersstand.com */
.list-unstyled {
  padding-left: 0;
  list-style: none;
  margin: 2px
}
.list-inline li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 10px
}
.bsd-colored-social .fa,
.bsd-social-icons .fa {
  font-size: 16px
}
.bsd-colored-social .fa,
.bsd-social-icons .fa {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out
}
.bsd-colored-social .fa,
.bsd-social-icons .fa {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #FFF;
  color: rgba(255, 255, 255, 0.8)
}
.bsd-colored-social.icon-circle .fa,
.bsd-social-icons.icon-circle .fa {
  border-radius: 50%
}
.bsd-colored-social.icon-rounded .fa,
.bsd-social-icons.icon-rounded .fa {
  border-radius: 2px
}
.bsd-colored-social.icon-flat .fa,
.bsd-social-icons.icon-flat .fa {
  border-radius: 0
}
.bsd-colored-social .fa:hover,
.bsd-colored-social .fa:active,
.bsd-social-icons .fa:hover,
.bsd-social-icons .fa:active {
  color: #FFF
}
.bsd-colored-social.icon-zoom .fa:hover,
.bsd-colored-social.icon-zoom .fa:active,
.bsd-social-icons.icon-zoom .fa:hover,
.bsd-social-icons.icon-zoom .fa:active,
.bsd-social-sidebar li:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1)
}
.bsd-colored-social.icon-rotate .fa:hover,
.bsd-colored-social.icon-rotate .fa:active,
.bsd-social-icons.icon-rotate .fa:hover,
.bsd-social-icons.icon-rotate .fa:active {
  -webkit-transform: scale(1.1) rotate(360deg);
  -moz-transform: scale(1.1) rotate(360deg);
  -ms-transform: scale(1.1) rotate(360deg);
  -o-transform: scale(1.1) rotate(360deg);
  transform: scale(1.1) rotate(360deg)
}
.bsd-colored-social .fa-dribbble,
.bsd-social-icons .fa-dribbble:hover,
.bsd-socialicons .bsd-dribbble:hover .bsd-sicon {
  background-color: #F46899
}

.bsd-colored-social .fa-stumbleupon,
.bsd-social-icons .fa-stumbleupon:hover,
.bsd-socialicons .bsd-stumbleupon:hover .bsd-sicon {
  background-color: #eb4924
}
.bsd-colored-social .fa-reddit,
.bsd-social-icons .fa-reddit:hover {
  background-color: #5f99cf
}
.bsd-colored-social .fa-facebook,
.bsd-social-icons .fa-facebook:hover,
.bsd-socialicons .bsd-facebook:hover .bsd-sicon {
  background-color: #3C599F
}
.bsd-colored-social .fa-rss,
.bsd-social-icons .fa-rss:hover,
.bsd-socialicons .bsd-rss:hover .bsd-sicon {
  background-color: #f26522
}
.bsd-colored-social .fa-flickr,
.bsd-social-icons .fa-flickr:hover,
.bsd-socialicons .bsd-flickr:hover .bsd-sicon {
  background-color: #d51007
}
.bsd-colored-social .fa-flickr,
.bsd-social-icons .fa-flickr:hover {
  background-color: #FF0084
}
.bsd-colored-social .fa-instagram,
.bsd-social-icons .fa-instagram:hover,
.bsd-socialicons .bsd-instagram:hover .bsd-sicon {
  background-color: #685243
}
.bsd-colored-social .fa-foursquare,
.bsd-social-icons .fa-foursquare:hover,
.bsd-socialicons .bsd-foursquare:hover .bsd-sicon {
  background-color: #0086BE
}
.bsd-colored-social .fa-github,
.bsd-social-icons .fa-github:hover,
.bsd-socialicons .bsd-github:hover .bsd-sicon {
  background-color: #070709
}
.bsd-colored-social .fa-google-plus,
.bsd-social-icons .fa-google-plus:hover,
.bsd-socialicons .bsd-googleplus:hover .bsd-sicon {
  background-color: #CF3D2E
}
.bsd-colored-social .fa-instagram,
.bsd-social-icons .fa-instagram:hover {
  background-color: #A1755C
}
.bsd-colored-social .fa-linkedin,
.bsd-social-icons .fa-linkedin:hover,
.bsd-socialicons .bsd-linkedin:hover .bsd-sicon {
  background-color: #0085AE
}
.bsd-colored-social .fa-pinterest,
.bsd-social-icons .fa-pinterest:hover,
.bsd-socialicons .bsd-pinterest:hover .bsd-sicon {
  background-color: #CC2127
}
.bsd-colored-social .fa-twitter,
.bsd-social-icons .fa-twitter:hover,
.bsd-socialicons .bsd-twitter:hover .bsd-sicon {
  background-color: #32CCFE
}
.bsd-colored-social .fa-vk,
.bsd-social-icons .fa-vk:hover,
.bsd-socialicons .bsd-vk:hover .bsd-sicon {
  background-color: #375474
}
.bsd-colored-social .fa-soundcloud,
.bsd-social-icons .fa-soundcloud:hover,
.bsd-socialicons .bsd-soundcloud:hover .bsd-sicon {
  background-color: #FF4100
}
.bsd-colored-social .fa-vine,
.bsd-social-icons .fa-vine:hover,
.bsd-socialicons .bsd-vine:hover .bsd-sicon {
  background-color: #35B57C
}

.bsd-colored-social .fa-youtube,
.bsd-social-icons .fa-youtube:hover,
.bsd-socialicons .bsd-youtube:hover .bsd-sicon {
  background-color: #C52F30
}
.top-social ul li {
  margin: 0;
  padding: 0
}
div#socialicons-top {
  float: left
}
.top-social .list-unstyled {
  margin: 0
}
.bsd-socialicons {
  text-align: center;
  overflow: auto;
  font-size: 22px;
  margin: 0 -8px
}
.bsd-socialicons .bsd-socialInner {
  position: relative;
  overflow: hidden;
  padding-left: 8px
}
.bsd-socialicons .bsd-social {
  float: left;
  width: 25%
}
.bsd-socialicons .bsd-sinn {
  padding-right: 8px
}
.bsd-socialicons .bsd-sinn:hover .bsd-sicon {
  color: #fff
}
.bsd-socialicons .bsd-sicon {
  display: block;
  padding: 10px 0;
}
.bsd-socialicons .bsd-facebook .bsd-sicon {
  color: #3B5998
}
.bsd-socialicons .bsd-googleplus .bsd-sicon {
  color: #DD4B39
}
.bsd-socialicons .bsd-twitter .bsd-sicon {
  color: #2AA9E0
}
.bsd-socialicons .bsd-instagram .bsd-sicon {
  color: #685243
}
.bsd-socialicons .bsd-pinterest .bsd-sicon {
  color: #CC2028
}
.bsd-socialicons .bsd-youtube .bsd-sicon {
  color: #DE1829
}
.bsd-socialicons .bsd-vine .bsd-sicon {
  color: #35B57C
}
.bsd-socialicons .bsd-soundcloud .bsd-sicon {
  color: #FF4100
}
.bsd-socialicons .bsd-vk .bsd-sicon {
  color: #45668e
}
.bsd-socialicons .bsd-foursquare .bsd-sicon {
  color: #f94877
}
.bsd-socialicons .bsd-github .bsd-sicon {
  color: #333333
}
.bsd-socialicons .bsd-dribbble .bsd-sicon {
  color: #ea4c89
}
.bsd-socialicons .bsd-stumbleupon .bsd-sicon {
  color: #eb4924
}
.bsd-socialicons .bsd-linkedin .bsd-sicon {
  color: #0085AE
}
.bsd-socialicons .bsd-rss .bsd-sicon {
  color: #f26522
}
.bsd-socialicons .bsd-flickr .bsd-sicon {
  color: #FF0084
}
.bsd-socialicons .bsd-sicon {
  background: #F5F5F5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease
}
.bsd-socialicons .bsd-scount {
  display: block;
  color: #FFFFFF;
  background: #007ABE;
  padding: 5px 0;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600
}
.bsd-socialicons .bsd-scount:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absdolute;
  pointer-events: none;
  border-color: rgba(238, 238, 238, 0);
  border-bottom-color: #007ABE;
  border-width: 4px;
  margin-left: -4px
}
.bsd-socialicons .bsd-scount:hover {
  background: #222222;
}

Step 7. Now Click Save template.
Step 8. Now go to your Blogger Dashboard
Step 9. Then Go to your Layout Section.
Step 10. Click on "Add a Gadget" then select "HTML/JavaScript" Gadget.
Step 11. Now Paste the following HTML code in "HTML/JavaScript" Gadget.
<div class="bsd-socialicons">
<div class="bsd-socialInner">
  <!--Facebook-->
    <div class="bsd-social">
  <div class="bsd-facebook bsd-sinn">
      <a href='#' target='_blank' tibse="Facebook">
      <span class="bsd-sicon"><i class="fa fa-facebook"></i></span>
      <span class="bsd-scount">3.1K</span>
      </a>
      </div>
      </div>
  <!--Google Plus-->
    <div class="bsd-social">
  <div class="bsd-googleplus bsd-sinn">
      <a href='#' target='_blank' tibse="Google Plus">
      <span class="bsd-sicon"><i class="fa fa-google-plus"></i></span>
      <span class="bsd-scount">2K</span>
      </a>
    </div>
    </div>
  <!--Twitter-->
  <div class="bsd-social">
  <div class="bsd-twitter bsd-sinn">
      <a href='#' target='_blank' tibse="Twitter">
      <span class="bsd-sicon"><i class="fa fa-twitter"></i></span>
      <span class="bsd-scount">1.4K</span>
      </a>
    </div>
    </div>
  <!--Instagram-->
  <div class="bsd-social">
  <div class="bsd-instagram bsd-sinn">
      <a href='#' target='_blank' tibse="Instagram">
      <span class="bsd-sicon"><i class="fa fa-instagram"></i></span>
      <span class="bsd-scount">2K</span>
      </a>
    </div>
    </div>
  <!--Pinterest-->
  <div class="bsd-social">
  <div class="bsd-pinterest bsd-sinn">
      <a href='#' target='_blank' tibse="Pinterest">
      <span class="bsd-sicon"><i class="fa fa-pinterest"></i></span>
      <span class="bsd-scount">4.5K</span>
      </a>
    </div>
    </div>
  <!--Youtube-->
  <div class="bsd-social">
  <div class="bsd-youtube bsd-sinn">
      <a href='#' target='_blank' tibse="YouTube">
      <span class="bsd-sicon"><i class="fa fa-youtube"></i></span>
      <span class="bsd-scount">2.8K</span>
      </a>
    </div>
    </div>
  <!--Vine-->
  <div class="bsd-social">
  <div class="bsd-vine bsd-sinn">
      <a href='#' target='_blank' tibse="Vine">
      <span class="bsd-sicon"><i class="fa fa-vine"></i></span>
      <span class="bsd-scount">3.3K</span>
      </a>
    </div>
    </div>
  <!--SoundCloud-->
  <div class="bsd-social">
  <div class="bsd-soundcloud bsd-sinn">
      <a href='#' target='_blank' tibse="SoundCloud">
      <span class="bsd-sicon"><i class="fa fa-soundcloud"></i></span>
      <span class="bsd-scount">3.9K</span>
      </a>
    </div>
    </div>
 
      <!--VK-->
      <div class="bsd-social">
  <div class="bsd-vk bsd-sinn">
      <a href='#' target='_blank' tibse="VK">
      <span class="bsd-sicon"><i class="fa fa-vk"></i></span>
      <span class="bsd-scount">3.9K</span>
      </a>
    </div>
    </div>
      <!---->
      <div class="bsd-social">
  <div class="bsd-foursquare bsd-sinn">
      <a href='#' target='_blank' tibse="Foursquare">
      <span class="bsd-sicon"><i class="fa fa-foursquare"></i></span>
      <span class="bsd-scount">3.9K</span>
      </a>
    </div>
    </div>
      <!--GitHub-->
      <div class="bsd-social">
  <div class="bsd-github bsd-sinn">
      <a href='#' target='_blank' tibse="GitHub">
      <span class="bsd-sicon"><i class="fa fa-github"></i></span>
      <span class="bsd-scount">3.9K</span>
      </a>
    </div>
    </div>
      <!--Dribbble-->
      <div class="bsd-social">
  <div class="bsd-dribbble bsd-sinn">
      <a href='#' target='_blank' tibse="Dribbble">
      <span class="bsd-sicon"><i class="fa fa-dribbble"></i></span>
      <span class="bsd-scount">3.9K</span>
      </a>
    </div>
    </div>
 
     <!--Stumbleupon-->
      <div class="bsd-social">
  <div class="bsd-stumbleupon bsd-sinn">
      <a href='#' target='_blank' tibse="Stumbleupon">
      <span class="bsd-sicon"><i class="fa fa-stumbleupon"></i></span>
      <span class="bsd-scount">3.4K</span>
      </a>
    </div>
    </div>
     <!--Linkedin-->
      <div class="bsd-social">
  <div class="bsd-linkedin bsd-sinn">
      <a href='#' target='_blank' tibse="Linkedin">
      <span class="bsd-sicon"><i class="fa fa-linkedin"></i></span>
      <span class="bsd-scount">1.5K</span>
      </a>
    </div>
    </div>
     <!--Rss-->
      <div class="bsd-social">
  <div class="bsd-rss bsd-sinn">
      <a href='#' target='_blank' tibse="Rss">
      <span class="bsd-sicon"><i class="fa fa-rss"></i></span>
      <span class="bsd-scount">1.9K</span>
      </a>
    </div>
    </div>
     <!--Flickr-->
      <div class="bsd-social">
  <div class="bsd-flickr bsd-sinn">
      <a href='#' target='_blank' tibsde="flickr">
      <span class="bsd-sicon"><i class="fa fa-flickr"></i></span>
      <span class="bsd-scount">2.9K</span>
      </a>
    </div>
    </div>
    </div>
</div>
</div>

customization

  • Change all # with your profile URLS example:<a href='#' target='_blank' tibse="Facebook"> replace with <a href='https://www.facebook.com/bloggersstand' target='_blank' tibse="Facebook">
  • Change all Social counter number with your desired numbers,example:<span class="bsd-scount">2.9K</span> replace with <span class="bsd-scount">5.9K</span>
Now Save your gadget..Done !


We hope this article helped you to learn How To Add Social Media Counter Widget Using Font Awesome Icon In Blogger template.If you liked this article please Join us on Facebook,Twitter,Google Plus.