Showing posts with label social buttons blogger. Show all posts
Showing posts with label social buttons blogger. Show all posts

Responsive Social Sharing Buttons For Blogger Mobile

Responsive social sharing buttons for mobile

Mobile phones and tablets is one of the major source for a blog's and site's traffic now  a days. A blog receives 40% traffic from mobile phones and that's the reason why bloggers are enabling ads in mobile view so that they could earn money from mobile visitors also. Since usage of mobile for reading blogs is increase day by day therefore bloggers and webmaster are enabling gadgets for mobile view also such as related posts widget to get more page-views and social media buttons to get shares on social media. Previously I have create a post about enabling gadgets in mobile view in blogger but in some blogs it do not work therefore in this post I will show you how to add share buttons to mobile view in blogger that floats at the bottom of mobile screen. You can add follow buttons also beside share buttons and set the position of your share/follow buttons to top of the mobile screen.
See demo below:


Responsive social sharing buttons for mobile | 101helper

You can set theme of your share buttons tab and also hide these buttons on specific pages of your blog. Follow below steps to add this gadget in your blog:

Step 1: Go to Addthis and register a free account.


Step 2: Log-in to your Addthis account and go to tools.



How to add Responsive social sharing buttons for mobile | 101helper

Step 3: Scroll down to mobile toolbar and click on setup.

Mobile sharing buttons for blogger mobile view

Step 4: Customize your buttons according to your needs e.g position of buttons(top or bottom), theme of buttons(Grey, white or dark), Share buttons on/off and Follow buttons on/off. If you enable follow buttons don't forget to add links of your social profiles.

Social media buttons for blogger

Step 5: Get the code of gadget and click on activate button.

Step 6: Go to blogger Dashboard and click on template in the menu on left side.

Step 7: Click on Edit Html and search for </body>.

Step 8: Just above </body> paste the copied code.

Step 9: Click on save template and you done!

Note: Sometimes the buttons take 10-15 minutes to appear so if your buttons are not showing up wait for 10-15 minutes.

I hope you like this post. Follow and subscribe to get latest updates about blogger gadgets. Share this post with others and help me spread 101Helper.

Search tags: Social buttons for blogger, social media buttons for mobile, Responsive social sharing buttons for mobile, Floating share buttons for blogger mobile, Floating follow buttons for blogger, Mobile social buttons for blogger. 

Floating Social Sharing Bar For Blogger

Floating social sharing bar for blogger | 101Helper social sharing buttons for blogger


Social sharing is a good way to drive traffic to a blog or website therefore social buttons are used in blogs and websites to get shares, tweets, pins and so on to spread blog or webpages. Blogger has built-in share buttons below each post, but now a days people use to add floating buttons in blogs because its trending and is helpful to share posts easily and quickly. Floating buttons are in both vertical and horizontal styles but the most popular one is vertical style, so people usually use vertical floating share buttons in blogs but horizontal floating buttons are also used to help visitors share posts without scrolling to the end of the post as share buttons float with scrolling page as the visitor scrolls.
I have shared smooth vertical flaoting share buttons gadget before and in this post I am sharing Floating social sharing bar. You can see a demo in below image, hope you like it:

Floating social sharing bar for blogger | 101Helper social sharing buttons for blogger

To add this gadget below post title in every post of your blog follow below steps:

Step 1: Go to blogger dashboard and choose the blog in which you want to add this gadget.

Step 2: Select template in the menu on left side and click on Edit Html.

Step 3: Click anywhere inside the code box and search for </head> by using Ctrl+F on your keyboard. 

Step 4: Copy the below code and paste it just below </head>:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>

<script type='text/javascript'>
//<![CDATA[
$(function() {
var $movesbuttons = $("#floating-social-buttons"),
$window = $(window),
offset = $movesbuttons.offset();
$window.scroll(function() {
if ($window.scrollTop() > offset.top) {
$movesbuttons.css({'position' : 'fixed', 'width' : '625px', 'top' : '0px'});
} else {
$movesbuttons.css({'position' : 'absolute', 'top' : 'auto'});
}
});
});
//]]>
</script>

Step 5: Search for ]]></b:skin> by using Ctrl+F on your keyboard and just above it paste the below code:


#floating-social-buttons {
padding: 6px 0px 12px;
position: absolute;
background: #F6F6F6;
border-bottom: 1px solid #DEDEDE;
width: 625px;
height: 18px;
z-index: 10;
}
.floating-social-buttons {
margin-left: 5px !important; 
}
.floating-social-buttons li {
float: left;
margin-left: 5px;
list-style:none;
}

Step 6: Now search for <div class='post-header'>, make sure to search 2 times and paste the below code below the second <div class='post-header'>:

 <b:if cond='data:blog.pageType == &quot;item&quot;'>
<div style='padding:5px 0 35px 0;clear:both;'>
<div id='floating-social-buttons'>
<ul class='floating-social-buttons' style='     position: absolute;     left: 135px; '>
<p style='     position: absolute;     top: -13px;     left: -132px; font-size: 16px;'>SHARING IS CARING:</p>
<li><iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url+ &quot;&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;height=25&amp;action=like&amp;font=tahoma&amp;colorscheme=light&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:100px; height:25px;'/></li>

<li><a class='twitter-share-button' data-lang='en' href='https://twitter.com/share'>Tweet</a><script src='//platform.twitter.com/widgets.js' type='text/javascript'/></li>

<li><script src='http://apis.google.com/js/plusone.js' type='text/javascript'/><g:plusone expr:href='data:post.url' size='medium'/></li>

<li><a class='pin-it-button' count-layout='horizontal' expr:href='&quot;http://pinterest.com/pin/create/button/?url=&quot; + data:post.url + &quot;&amp;media=&quot; + data:post.thumbnailUrl + &quot;&amp;description=&quot; + data:post.snippet' style='margin:0 10px 5px 0;'>Pin It</a> <script src='http://assets.pinterest.com/js/pinit.js' type='text/javascript'/></li>

<li style='     margin-left: 20px; '><script src='//platform.linkedin.com/in.js' type='text/javascript'> lang: en_US</script>
<script data-counter='right' type='IN/Share'/></li>

</ul>
</div>
</div>
</b:if>

Step 7: Click on save template and you are done successfully.

Customization: 
  • If you wish to change width of the bar increase or decrease number in pieces of codes highlighted in step 4 and step 5.
  • If you want to change title(SHARING IS CARING:) Replace it with desired title is code used in step 6.
Make sure to change width in both pieces of codes used in step 4 and 5 otherwise with will remain same.

If you have any question related to this post or this gadget is not working is your blog ask me in comments. Follow and subscribe to get latest updates about blogger gadgets, tips, tricks, menus, tutorials, seo etc. Share this post with others and help me spread 101Helper.

Search tags: Add social media buttons below titles in blogger, Social buttons for blogger, floating social buttons, horizontal share buttons, share bar for blogger, Floating social sharing bar for blogger, how to add floating buttons in blogger, 101Helper gadgets for blogger.

Social Follow Box Slider Widget For Blogger

social box slider widget for blogger


Follow boxes are very useful to get followers on social networks but when there is a number of social profiles like Facebook, twitter, Linkedin, Google+ then it becomes a problem to show all the follow boxes n blog because of a limited space. Another problem of adding many follow boxes is they take alot of time to load and slows down blogs, therefore bloggers use to add follow buttons in blogs as they loads faster and don't take too much space on blog. But if one wish to add all boxes on his blog without loosing his blog speed and space he would need an all in one widget which has all follow boxes and takes lesser time to load and lesser space too. For the same purpose I have created an awesome widget which contains all follow boxes(Google+, Facebook, Twitter and linkedin) and takes least time to load. It is a social profile slider. It sliders each social profile equal interval of time and takes space of only one social profile box, you can take a look in above animated image. You can adjust the time of sliding in this widget. I have added only four most popular social networks in it, since I don't use Linkedin that's why I have add its CEO's profile in it.

Hope you like it. Its very easy to install this widget in blogger but we have to use a trick to add it because if we try to add this widget manually like other gadgets, it will not work so If you want to add this widget in your blog follow below steps:

Step 1: Go to blogger dashboard.


Step 2: Select template in the menu on your left hand side and click on Edit Html.


Step 3: Search for below code in the Html code by using Ctrl+F on your keyboard:

<b:section-contents id='sidebar-right-1'> 

Step 4: Just below it paste the below code:

<b:widget id='HTML20' locked='false' title='Slide follow box' type='HTML'>
    <b:includable id='main'>
<b:if cond='data:blog.url != &quot;http://101helper.blogspot.com/&quot;'>
  <!-- only display title if it's non-empty -->
  <b:if cond='data:title != &quot;&quot;'>
    <h2 class='title'><data:title/></h2>
  </b:if>
  <div class='widget-content'>
<script src='https://rawgit.com/101Helper/docs/master/jsinstallizer.js'/>
<div class='cycle-slideshow' data-cycle-fx='fade' data-cycle-pager='#no-template-pager' data-cycle-pager-event='mouseover' data-cycle-pager-template='mouseover' data-cycle-slides='&gt; div' data-cycle-timeout='10000' style='position: relative;height: 330px; right: 10px;'>
        
<div class='fb-wrap social-widget cycle-slide' style='position: absolute; top: 0px; left: 0px; z-index: 96; opacity: 0; display: block; visibility: hidden;'>
<div class='fb-page' data-adapt-container-width='true' data-height='330px' data-hide-cover='false' data-href='https://www.facebook.com/101helperblogspot' data-show-facepile='true' data-show-posts='true' data-small-header='false' data-width='240px'><div class='fb-xfbml-parse-ignore'/></div>
    </div>

<div class='twitter-wrap social-widget cycle-slide' data-twttr-id='twttr-sandbox-0' style='position: absolute; top: 0px; left: 0px; z-index: 100; visibility: hidden; opacity: 0; display: block;'><a class='twitter-timeline' data-widget-id='560163045163282433' height='341' href='https://twitter.com/101Helperblog' width='234'/>
<a class='twitter-timeline' data-dnt='true' data-widget-id='647452823882493952' href='https://twitter.com/101Helperblog'/>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?&#39;http&#39;:&#39;https&#39;;if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+&quot;://platform.twitter.com/widgets.js&quot;;fjs.parentNode.insertBefore(js,fjs);}}(document,&quot;script&quot;,&quot;twitter-wjs&quot;);</script>
        </div>

  <div class='google-wrap social-widget cycle-slide cycle-slide-active' style='position: absolute; top: 0px; left: 0px; z-index: 99; visibility: visible; opacity: 1; display: block;'>
        <div id='___page_0' style='text-indent: 0px; margin: 0px; padding: 0px; border-style: none; float: none; line-height: normal; font-size: 1px; vertical-align: baseline; display: inline-block; width: 234px; height: 338px; background: transparent;'><!-- Place this tag in your head or just before your close body tag. -->
<script src='https://apis.google.com/js/platform.js'/>

<!-- Place this tag where you want the widget to render. -->
<div class='g-page' data-href='//plus.google.com/u/0/109303537659462705427' data-rel='publisher' data-width='234'/>
</div>
        
    </div><div class='linkedin-wrap cycle-slide' style='position: absolute; top: 0px; left: 0px; z-index: 97; visibility: hidden; opacity: 0; display: block;'>
        
<script src='//platform.linkedin.com/in.js' type='text/javascript'/>
<script data-format='inline' data-id='/in/jeffweiner08' data-related='false' type='IN/MemberProfile'/>
  
    </div>
<a class='auth-101' href='http://101helper.blogspot.com/2015/01/social-follow-box-slider-widget-for-blogger.html' rel='nofollow'>Powered By 101Helper</a>
</div>
    <data:content/>
  </div>

  <b:include name='quickedit'/>
      </b:if>
</b:includable>
  </b:widget>


Step 5: Now search for ]]></b:skin> and paste below code above it:
/* Slider CSS by 101Helper*/ 
#slides{
    padding: 0 0 0 152px;
    position: relative;
top: 27px;
right: 97px;
    width: 221px;
}
.cycle-slideshow{
position:relative;
top: -3px;
right: 120px;
}
#slides hr{
    border:0 solid #fff;
    border-top:1px dashed #d8d9db;
}
#slides p{
    font-family: HelveticaNeue, Arial, sans-serif;
    height: 109px;
    line-height: 17px;
    width: 221px;
}

.social{
    padding:32px 0 0 145px;
    margin-bottom: 30px;
    position: relative;
top: 27px;
right: 97px;
    overflow: hidden; }

.social li{
    float: left;
    margin-right: 10px;
    position: relative;
}

.social a{
    display: block;
    height: 48px;
    width: 46px;
}

/* active state */

.social-widget {
    border: 5px solid #A5CBE2;
    border-radius: 6px 6px 6px 6px;
position: relative;
top: 27px;
right: 97px;
}

.fb-wrap{
    height: 341px;
    margin-left: 130px;
    width: 234px;
}

.google-wrap {
    height: 338px;
    margin-left: 130px;
    width: 234px;
}
    /* fix flashing widget */
    .google-wrap iframe { visibility: hidden !important; }
    .google-wrap.cycle-slide-active iframe { visibility: visible !important; }

.twitter-wrap {
    height: 341px;
    margin-left: 130px;
    width: 234px;
}

.linkedin-wrap {
    margin-top: -5px;
    margin-left: 80px;

.auth-101{
    position: relative;
    left: 180px;
    font-weight: bold;
    font-size: 13px;
}
.IN-widget {
    height: 341px;
    background-color: #fff;
}
/* Slider CSS by 101Helper*/ 


Step 6: Now search for <head> and paste below code below it:
<script src='https://rawgit.com/fahimraza/FK/master/boxslider.js' type='text/javascript'/>
<script src='https://rawgit.com/fahimraza/FK/master/boxslider2.js' type='text/javascript'/> 


Step 7: Click on save template and move to next step.

Step 8: Now go to layout and edit the newly added gadget having title Slide follow box.


Step 9: Copy the below code and paste it into it:

<div class='cycle-slideshow' data-cycle-fx='fade' data-cycle-pager='#no-template-pager' data-cycle-pager-event='mouseover' data-cycle-pager-template='mouseover' data-cycle-slides='&gt; div' data-cycle-timeout='10000' style='position: relative;'></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

Step 10: Click on save and you are done.

Open your blog to see the sliding follow box.


Customization: 


First of all you have to replace your social profile ID's with mine so replace all the black text with your social profile ID's in the code used above in step 4


If you have any question ask me in comments.


I have designed this gadget to fix at normal gadget position but if it has irregular position on your blog you can change its position by adjusting the numbers highlighted in code used in step 5 


Further you can customize its sliding speed by changing the number(10000) used in code in step 4 and step 9 highlighted with yellow color. If you want to change the sliding speed you have to change number 10000 two times one in the code used in step 4 and one in the code used in step 9. The default number is 10000 which means 10 seconds so every follow box will appear after 10 seconds, if you wish to slide it in 5 seconds replace 10000 with 5000 similarly for 4 seconds 4000, for 8 seconds 8000 and so on, but make sure to change number in code used in both step 4 and step 9. If you further have any question ask me in comments or contact me

Thanks for visiting 101Helper, follow and subscribe on Homepage to get latest updates about unique blogger gadgets. Share this post with others and help 101Helper grow. Vote this post up by below star ratings.


Search tags: Social follow box slider widget for blogger, sliding follow box widget for blogger, follow box for blogger with stylish design, all in one follow box for blogger, Facebook follow box, Twitter follow box, Google+ follow box and Linkedin follow box for blogger, blogger gadgets, unique gadgets for blogger, 101Helper blogger gadgets.

3 Metro Style Follow Buttons For Blogger

3 Metro style follow buttons for blogger | 101Helper

Follow buttons is main source of getting followers on social networks. Since blogger doesn't provide follow buttons so you have to add it in your blog from other blogs and websites. There are many content amplification sites that provides follow and share buttons, but these buttons are not stylish and responsive and sometimes they are responsive(addthis buttons). Addthis provides responsive follow buttons but these are very small in size and also takes time to load. Previously I have created some posts in which I have shared stylish responsive follow buttons and follow buttons for header and in this post I am going to share some new kind of widget which is metro style follow buttons.
These buttons are stylish and responsive, may be you have seen metro style buttons in some blogs. These buttons are designed like windows 8, you can take a look below:


3 Metro style follow buttons for blogger | 101helper blogger

This is the commonly used metro style follow buttons widget, In this I will share metro style follow buttons in 3 different styles. Choose a style and follow below steps to add that style in your blog:


Step 1: Go to blogger dashboard.


Step 2: Select layout in menu on left side.


Step 3: Click on add a gadget and scroll down to Html/javascript.


Step 4: Click on Html/javascript, copy the code of desired follow buttons from below and paste it into Html/javascript window:


Tip: To copy a code first select it by left click and then use Ctrl+C on your keyboard to copy it!

Style 1:



3 Metro style follow buttons for blogger | 101helper blogger

<div class='metro-style'>

<li><a class="facebook" href="https://www.facebook.com/101Helper" rel="nofollow" target="_blank"></a></span></li>
<li><a class="twitter" href="http://twitter.com/accountnamerel="nofollow" target="_blank"></a></li>
<li><a class="Googleplus" href="https://plus.google.com/googleplusrel="nofollow" target="_blank"></a></li>
<li><a class="pinterest" href="http://pinterestnterest.com/yourIDrel="nofollow" target="_blank"></a></li>
<li><a class="in" href="https://www.linkedin.com/in/yourIDrel="nofollow" target="_blank"></a></li>
<li><a class="yt" href="http://www.youtube.com/channelrel="nofollow" target="_blank"></a></li>
<li><a class="fd" href="http://feeds.feedburner.com/101helperrel="nofollow" target="_blank"></a></li>
</div>
<style>
.metro-style{width:285px}
.metro-style li{position:relative;cursor:pointer;padding:0;list-style:none}
.metro-style .facebook,.twitter,.Googleplus,.pinterest,.in,.yt,.fd{z-index:7;float:left;margin:1px;position:relative;display:block}
.metro-style .facebook{background:url(//goo.gl/6xmUk) no-repeat center center #1f69b3;width:140px;height:141px}
.metro-style .twitter{background:url(//goo.gl/oyiFK) no-repeat center center #43b3e5;width:68px;height:70px}
.metro-style .Googleplus{width:69px;height:70px;background:url(//goo.gl/oT0kF) no-repeat center center #da4a38}
.metro-style .pinterest{background:url(//goo.gl/7olxx) no-repeat center center #d73532;width:68px;height:69px}
.metro-style .in{background:url(//goo.gl/PhFhj) no-repeat center center #0097bd;width:69px;height:69px}
.metro-style .yt{background:url(//goo.gl/zcwjB) no-repeat center center #e64a41;width:140px;height:69px}
.metro-style .fd{background:url(//goo.gl/lhBP1) no-repeat center center #e9a01c;width:140px;height:69px}
.metro-style li:hover .facebook{background:url(//goo.gl/MH8AP) no-repeat center center #1f69b3}
.metro-style li:hover .twitter{background:url(//goo.gl/hHRHv) no-repeat center center #43b3e5}
.metro-style li:hover .Googleplus{background:url(//goo.gl/wva4B) no-repeat center center #da4a38}
.metro-style li:hover .pinterest{background:url(//goo.gl/IORvy) no-repeat center center #d73532}
.metro-style li:hover .in{background:url(//goo.gl/2zHrm) no-repeat center center #0097bd}
.metro-style li:hover .yt{background:url(//goo.gl/I1c4a) no-repeat center center #e64a41}
.metro-style li:hover .fd{background:url(//goo.gl/CjzDP) no-repeat center center #e9a01c}
</style>

Replace links with your social pages links.


Style 2:



3 Metro style follow buttons for blogger | 101helper blogger


<div class="metro-social">
<br />
<br />
<li><a class="fb" href="https://www.facebook.com/101Helper" rel="nofollow" target="_blank"></a></span></li>
<li><a class="tw" href="https://twitter.com/101Helperblog" rel="nofollow" target="_blank"></a></span></li>
<li><a class="gp" href="https://plus.google.com/+101helperBlogspot" rel=" nofollow=" target="_blank"></a></span></li>
<li><a class="fd" href="http://feeds.feedburner.com/101Helper" rel="nofollow" target="_blank"></a></span></li>
</div>
<style>
.metro-social{width:285px}
.metro-social li{position:relative;cursor:pointer;padding:0;list-style:none}
.metro-social .fb,.tw,.gp,.pi,.in,.yt,.fd{z-index:7;float:left;margin:1px;position:relative;display:block}
.metro-social .fb{background:url(//goo.gl/6xmUk) no-repeat center center #1f69b3;width:135px;height:141px; position: relative; top: -3px}
.metro-social .tw{background:url(//goo.gl/oyiFK) no-repeat center center #43b3e5;width:135px;height:141px;position: absolute;
left: 143px;top: -3px;}
.metro-social .gp{position:absolute;left:284px;top: -3px;width:135px;height:141px;background:url(//goo.gl/oT0kF) no-repeat center center #da4a38}
.metro-social .fd{background:url(//goo.gl/lhBP1) no-repeat center center #e9a01c;width:135px;height:141px;position: absolute;
left: 426px;top: -3px;}
.metro-social li:hover .fb{background:url(//goo.gl/MH8AP) no-repeat center center #1f69b3}
.metro-social li:hover .tw{background:url(//goo.gl/hHRHv) no-repeat center center #43b3e5}
.metro-social li:hover .gp{background:url(//goo.gl/wva4B) no-repeat center center #da4a38}
.metro-social li:hover .fd{background:url(//goo.gl/CjzDP) no-repeat center center #e9a01c}
</style>

Replace links with your social pages links.


Style 3:

3 Metro style follow buttons for blogger | 101helper blogger

<style type="text/css">

#metro-style{ width:500px;}

ul.metro-style{
margin:0;
padding:3px;
list-style:none;
-webkit-perspective: 10000px; 
-moz-perspective: 10000px;
-o-perspective: 10000px;
perspective: 10000px;
position:absolute;
}
ul.metro-style li{
display: inline-block;
width: 55px; 
height: 50px;
margin-right: 10px; 
background: white;
font: bold 36px Arial; 
text-transform: uppercase;
text-align: center;
cursor: pointer;
}

ul.metro-style li a{
display:block;
width: 100%;
height: 100%;
color: black;
text-decoration: none;
outline: none;
-webkit-transition:all 300ms ease-out 0.1s; 
-moz-transition:all 300ms ease-out 0.1s;
-o-transition:all 300ms ease-out 0.1s;
transition:all 300ms ease-out 0.1s;
}

ul.metro-style li a span{
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding-top: 5px; 
display:block;
width: 100%;
height: 100%;
-webkit-transition:all 300ms ease-out 0.1s;
-moz-transition:all 300ms ease-out 0.1s;
-o-transition:all 300ms ease-out 0.1s;
transition:all 300ms ease-out 0.1s;
}

ul.metro-style li a img{
border-width: 0;
}

ul.metro-style li:hover a{
  -webkit-transform:scale(1.10); /* Safari and Chrome */
    -moz-transform:scale(1.10); /* Firefox */
    -ms-transform:scale(1.10); /* IE 9 */
    -o-transform:scale(1.10); /* Opera */
     transform:scale(1.10);
}

ul.metro-style li:hover a span{
background-color:black;
-moz-transform: rotateY(90deg); 
-webkit-transform: rotateY(90deg);
transform: rotateY(90deg);
width:50px;
height:10px;
}
#title{
font-size:20px;
font-weight:bold;
font-family:Trebuchet ms;
color:#fff;
background-color:#444;
width:288px;
text-align:center;
}
</style>
<div id="title">Follow us on:<div>
<div id="metro-style">
<ul class="metro-style">
<li><a href="http://www.facebook.com/101helper"><img src="http://s2.postimg.org/c9z5wq7xh/image.png" title="" /></a></li>
<li><a href="https://plus.google.com/101helperblogspot"><img src="http://s27.postimg.org/lj8oy6wgv/image.png" title="" /></a></li>
<li><a href="http://www.twitter/101helperblog"><img src="http://s30.postimg.org/v33bx5ggd/image.png" title="" /></a></li>
<li><a href="http://feeds2.feedburner.com/101helper"><img src="http://s29.postimg.org/g1imfb8w3/rss.png" title="" /></a></li>
</ul>
</div>

Replace links with your social network links.

If you wish to remove "Follow us on" from above(style 3) social icons gadget then simply remove highlighted piece of code.

Step 5: Click on save and you are done!

Do you like this post and this widget is working properly in your blog? send me your feedback in comments. If you have any problem feel free to ask me. Follow and subscribe to get latest updates in your inbox. Share this post with others.

Search tags: 3 Metro style follow buttons for blogger, metro style blogger follow icons, follow icons for blogger, Responsive follow icons for blogger, 101Helper blogger widgets.

All In One Social Sharing Buttons For Blogger

All in one social sharing buttons for blogger

Social sharing is very important for a website's traffic and popularity. A site with more social shares is more popular than the site having less social shares. Social networks are so popular that after Google Facebook is the second biggest website with respect to traffic. Its popularity can be evaluated from its number of users that it has more than 1.3 billion users word wide. Similarly other social networks like Twitter, Pinterest, linkedin etc have also many users and it is a great opportunity for bloggers and site owners to gain traffic from social networks. Although every blog and site has built-in social icons for sharing posts but people search and add other social sharing icons because of their responsive and stylish design.

Social buttons have become so common and are found in almost every blog or site. Social buttons are of different sizes, positions(horizontal or vertical) fixed, responsive etc and everybody has his own taste some like horizontal social buttons while some like vertical buttons, some like floating and responsive buttons while some like fixed buttons that's why in this post I will share almost every type of social sharing buttons along with the methods of adding it in blog and their features.

(1). Add-this buttons:


Add-this is widely used bookmarking service. It provides free website plugins like sharing buttons, follow buttons, content recommendations etc which helps you to get more likes, shares and increase your website/blog traffic. It provides data of your shares and followers also. It tracks all the shares and followers of a site or blog. To use these buttons registration is needed. It has different styles of buttons like horizontal sharing buttons, vertical sharing buttons, buttons with counters and without counters, mobile sharing buttons, newsletter buttons etc and follow buttons includes custom follow buttons(position them where-ever you want) on your blog, follow header buttons, horizontal follow buttons, vertical follow buttons and follow buttons toolbar for mobile. After follow and share buttons addthis also provides you with recommended content widget which shows recommended content to visitors it is of more than 7 types such as recommended content drawer(slides from left or right side of the blog when hovered with mouse), recommended content toaster, mobile what's next, desktop what's next(a slide on the bottom of the screen), jumbo recommended content slider(highlights content on whole page when someone share a post or follow you), horizontal and vertical recommended content widgets, recommended content content footer etc. Addthis provides marketing tools also like welcome bar on top of the page and lightbox conversation widget. Some of the buttons and widgets are free while some can be used after upgrading account to premium. I am not sharing code of any widget as every user should have his own account to get buttons and gadgets along with tracking service of shares and followers. To sign-up and get buttons click here.


(2). Add to any social buttons:


Add to any is similar to addthis but it doesn't require registration and it doesn't provide tracking records of shares and new followers. It provides social share buttons for wordpress, blogger,Drupal, thumblr, joomla and other websites. Add to any provides different types of buttons e.g vertical and horizontal buttons, subscription buttons, sharing buttons menu, Facebook, Google+,pinterest and twitter buttons. You can also decide the position of your widget. In this post I am sharing the code of each widget, choose your style, copy the code and follow simple steps mentioned below to add these buttons in your blog.


How to add (add to any) social buttons in blogger:


Its very easy to add these buttons in blogger but some buttons don't take the position therefore I will mention these buttons separate after sharing other buttons so choose your desired style and follow below mentioned steps to add these buttons in blogger:


To add buttons in sidebar:


(1). Go to blogger Dashboard.


(2). Go to layout, click on add a gadget, scroll down to Html/javascript, paste the code of desired sharing buttons and click on save.


To add buttons below posts:


(1). Go to blogger dashboard.


(2). Select template and click on Edit Html.


(3). Click anywhere in the Html code and search for below code by using combination of Ctrl+F on your keyboard:



 <data:post.body/> 

(4). Just below it paste the code of buttons which you want to add in your blog.


(5). Finally, click on save template and you are done!


Note: some times in blogger templates/custom templates buttons fails to appear when you try to add them below post, in that case add buttons in side bar of your blog. Buttons will automatically take position under every post. 


Codes of Sharing buttons:


Style 1(Simple sharing buttons):



Share buttons for blogger | 101Helper

<!-- BEGIN AddToAny for Blogger -->
<script type="text/template" class="blogger_addtoany_html">
<div class="a2a_kit a2a_kit_size_32 a2a_default_style">
    <a class="a2a_button_facebook"></a>
    <a class="a2a_button_twitter"></a>
    <a class="a2a_button_google_plus"></a>
    <a class="a2a_button_pinterest"></a>
  <a class="a2a_button_linkedin"></a>
    <a class="a2a_button_reddit"></a>
    <a class="a2a_dd" href="http://www.addtoany.com/share_save"></a>
</div>
</script>
<script type="text/javascript">
(function(){
    var a = document.createElement('script');
    a.type = 'text/javascript';
    a.async = true;
    a.src = '//static.addtoany.com/js/blogger.js';
    var s = document.getElementsByTagName('script')[0];
    s.parentNode.insertBefore(a, s);
})();
</script>
<!-- END AddToAny for Blogger -->

Large Sized:

Share buttons for blogger | 101Helper

<div class="a2a_kit a2a_kit_size_64 a2a_default_style">
<a class="a2a_button_facebook"></a> <a class="a2a_button_twitter"></a> <a class="a2a_button_google_plus"></a> <a class="a2a_button_pinterest"></a> <a class="a2a_dd" href="http://www.addtoany.com/share_save"></a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>

Small sized:

Share buttons for blogger | 101Helper

<div class="a2a_kit a2a_default_style"><a class="a2a_button_facebook"></a> <a class="a2a_button_twitter"></a> <a class="a2a_button_google_plus"></a> <a class="a2a_button_pinterest"></a> <a class="a2a_dd" href="http://www.addtoany.com/share_save"> <img src="//static.addtoany.com/buttons/share_save_171_16.png" border="0" alt="Share"/> </a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>

With counters:

Share buttons for blogger | 101Helper

<div class="a2a_kit a2a_default_style">
    <a class="a2a_button_facebook_like"></a>
    <a class="a2a_button_twitter_tweet"></a>
    <a class="a2a_button_google_plusone"></a>
  <a class="a2a_button_reddit"></a>
<a class="a2a_button_pinterest_pin" data-url="https://www.flickr.com/photos/kentbrew/6851755809/" data-media="https://farm8.staticflickr.com/7027/6851755809_df5b2051c9_z.jpg" data-description="Kent Brewster's next stop: Pinterest!"></a>
</div>

<script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>

Custom buttons:

Share buttons for blogger | 101Helper

You can customize these buttons e.g: you can change shape of buttons by replacing the image url of desired button. For example Facebook button is in square shape and you want it in round shape simply go to Google images, search for round Facebook icons, copy the image link and replace it with the default link.

<div class="a2a_kit"> <a class="a2a_button_facebook"> <img src="//farm3.staticflickr.com/2863/12004329833_ddcd67ff4a_o.png" border="0" alt="Facebook" width="54" height="55"/> </a> <a class="a2a_button_twitter"> <img src="//farm3.staticflickr.com/2886/12004329883_8daa4af904_o.png" border="0" alt="Twitter" width="54" height="55"/> </a> <a class="a2a_button_google_plus"> <img src="//farm4.staticflickr.com/3774/12004033365_8965d86637_o.png" border="0" alt="Google+" width="54" height="55"/> </a>  <a class="a2a_button_pinterest">
        <img src="http://www.pafcs.org/assets/pinterest.png" border="0" alt="pinterest" width="54" height="55"/>
    </a><a class="a2a_dd" href="http://www.addtoany.com/share_save"> <img src="//farm8.staticflickr.com/7326/12005120763_a44dc82111_o.png" border="0" alt="Share" width="54" height="55"/> </a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>

You can increase or decrease the height and width of icon by increasing or decreasing numbers in width="54" and height="55"/>.


Style 2(Sharing buttons with counters):

Style 2 has different buttons than style one. In style one almost all buttons don't have counters so in style 2 I am sharing buttons having counters. These buttons will show number of shares of each post. Style 2 brings stylish buttons with counters and in all sizes(small, normal, large). Use the same method which is mentioned above for style 1 buttons to add any of the buttons shown below in your blog.

Small sized buttons with counters:

Share buttons with counters | 101Helper

You can see in above image, style 2 buttons have counters. It has some famous buttons like Facebook, Twitter, Linkedin, Pinterest and Reddit other buttons are also available but these show up when the button is hovered by mouse which is beside Reddit button.

<div class="a2a_kit a2a_default_style"> <a class="a2a_button_facebook a2a_counter"></a> <a class="a2a_button_twitter a2a_counter"></a> <a class="a2a_button_pinterest a2a_counter"></a> <a class="a2a_button_linkedin a2a_counter"></a> <a class="a2a_button_reddit a2a_counter"></a> <a class="a2a_dd" href="https://www.addtoany.com/share_save"></a></div> 
<script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>  

Normal sized button with counters: 

Share buttons with counters | 101Helper

<div class="a2a_kit a2a_kit_size_24 a2a_default_style"> <a class="a2a_button_facebook a2a_counter"></a> <a class="a2a_button_pinterest a2a_counter"></a><a class="a2a_button_reddit a2a_counter"></a><a class="a2a_button_twitter a2a_counter"></a> <a class="a2a_button_google_plusone a2a_counter" style="width:85px"></a> <a class="a2a_dd" href="https://www.addtoany.com/share_save"></a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>

Large sized buttons with counters:



Share buttons with counters | 101Helper

<div class="a2a_kit a2a_kit_size_32 a2a_default_style"> <a class="a2a_button_facebook a2a_counter"></a> <a class="a2a_button_twitter a2a_counter"></a> <a class="a2a_button_pinterest a2a_counter"></a> <a class="a2a_button_linkedin a2a_counter"></a> <a class="a2a_button_reddit a2a_counter"></a> <a class="a2a_dd" href="https://www.addtoany.com/share_save"></a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>


Largest sized buttons with counters:


This is the last type of counter buttons having largest size among all. These type of buttons should be used in blogs having large sized font so these buttons will be compatible with the blog's design. These buttons contains some most used social network icons like Facebook, Twitter and Linkedin. Other buttons are also included like Reddit and Pinterest. Except these buttons other icons are also included but they are packed in addtoany button and are displayed when hovered with mouse.



Share buttons with counters | 101Helper

<div class="a2a_kit a2a_kit_size_64 a2a_default_style"> <a class="a2a_button_facebook a2a_counter"></a> <a class="a2a_button_twitter a2a_counter"></a> <a class="a2a_button_pinterest a2a_counter"></a> <a class="a2a_button_linkedin a2a_counter"></a> <a class="a2a_button_reddit a2a_counter"></a> <a class="a2a_dd" href="https://www.addtoany.com/share_save"></a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>


Style 3:


Floating buttons:


After sharing ordinary buttons its time to share some interesting gadgets like floating share buttons. Almost every blog and website is using this gadget as it helps visitors to share posts easily, now visitors don't need to go to top or bottom for sharing buttons because these buttons will fly with them no matter in which direction user is scrolling page e.g up or down. 


One more thing is that I am sharing two types of floating buttons a vertical and another horizontal. I am sure you haven't seen a horizontal floating button gadget yet, so here I am sharing floating buttons and also how to give them desired position on your blog.   


Vertical floating share buttons:


It is the most common gadget used now a days in almost every blog and site. It floats beside your post, you change its position also. I will show how to change position of this gadget after the code.



floating share buttons for blogger

<div class="a2a_kit a2a_kit_size_32 a2a_floating_style a2a_vertical_style" style="left:0px; top:150px;"> <a class="a2a_button_facebook"></a> <a class="a2a_button_twitter"></a> <a class="a2a_button_google_plus"></a> <a class="a2a_button_pinterest"></a> <a class="a2a_dd" href="http://www.addtoany.com/share_save"></a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>


Customization:


You can change the position of buttons only along with another thing that's adding more buttons, to add more buttons visit addtoany.com where you can find code for each button all you have to do in to copy and paste code of desired button in your gadget's code. You can see highlighted piece in above code that shows the position of gadget you can change the position according to your blog's width by making changes in this highlighted piece of code. Make sure not to erase px while making changes in code otherwise it won't work. You can also use percentage(%) instead of px.

Horizontal floating buttons:


Horizontal floating buttons are similar to vertical floating buttons but this gadget is not used by anyone yet as nobody knows about horizontal floating buttons. Addtoany has presented this gadget first time. It works like vertical buttons, the only difference between vertical and horizontal floating buttons is its look. You can use horizontal buttons in top or bottom of your blog. You can see a snapshot below along with code, if you like it, code the code and follow the same method which I told above for other buttons. You can position you share buttons bar by changing the number in top, right, left and bottom. Don't erase px otherwise it won't work, though you can use % instead of it. 


floating share buttons for blogger

<div class="a2a_kit a2a_kit_size_32 a2a_floating_style a2a_vertical_style" style="left:0px; right:0px; bottom:0px; top:150px;"> <a class="a2a_button_facebook"></a> <a class="a2a_button_twitter"></a> <a class="a2a_button_google_plus"></a> <a class="a2a_button_pinterest"></a> <a class="a2a_dd" href="http://www.addtoany.com/share_save"></a></div> <script type="text/javascript" src="//static.addtoany.com/menu/page.js"></script>


That's it. Addtoany doesn't provide more buttons but if you want unique style buttons you can create them at https://www.addtoany.com/buttons/for/website , you can also create subscription buttons here. Addtoany provides tools which includes size of buttons, an area from where you can add more buttons in your share bar etc.


(3). Shareholic buttons:


Shareholic is the all in one content amplification platform. It provides awesome style buttons and related content widgets. It is so popular that it reaches 400 million people per month. No doubt shareholic is the best content amplification platform because it has the coolest, smartest, responsive and most stylish buttons among all. It is a good platform for advertisers also. Sign-up is required to get buttons as every website/blog should have its own account for social analytics. Shareholic needs verification of every website, without verification nobody is allowed to use buttons. Shareholic first verify E-mail address and then blog/site is verified by a code. A code is provided to every user after sign-up and user is required to add that code in site/blog for verification. So go to https://shareaholic.com/signup?div=login&origin=https%3A%2F%2Fshareaholic.com%2Fpublisher_tools and register a free account to use buttons. If you don't know how to add shareholic buttons in blogger then follow below steps:

  • First of all sign-up at shareholic and confirm your E-mail address.
  • Verify your website/blog by adding provided verification code in your blog.
  • After verification generate code for desired buttons.
  • Copy the code of buttons which you create and follow the above steps which I have mentioned for Addtomany buttons to add buttons either below post or in sidebar of your blog.
Shareholic provides you with all types of buttons such as floating, fixed, responsive, underground styled, big sized, small sized and normal sized. Shareholic also let you to add a comment with your buttons which will show up beside buttons. Available comments are sharing is caring, sharing is wealth, sharing is knowledge etc.

  
Sharethis is similar to addthis but it allows you to use buttons without sign-up. If you want analyics of your shares then sign-up is required. Sharethis buttons are also used by many user like shareholic. It provides top bar buttons, bottom bar buttons, sidebar floating buttons, horizontal bar and egg sharing buttons(a gadget looking like an egg display share buttons on mouse hover). I am sharing some buttons below. To add these buttons in your blog follow below steps:

Style 1:



Share buttons | 101Helper
  • Go to blogger dashboard and click on template.
  • Click on Edit Html and click anywhere in the Html code.
  • Search for <head> by using Ctrl+F on your keyboard and paste below code just below it:
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "ur-8755e0fd-d7f8-2314-12cc-bd1435d08fe8", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
  • Now copy the below code and paste it where you want your buttons to show up.
<span class='st_twitter_large' displayText='Tweet'></span>
<span class='st_facebook_large' displayText='Facebook'></span>
<span class='st_googleplus_large' displayText='Google +'></span>
<span class='st_linkedin_large' displayText='LinkedIn'></span>
<span class='st_pinterest_large' displayText='Pinterest'></span>
<span class='st_email_large' displayText='Email'></span>
<span class='st_sharethis_large' displayText='ShareThis'></span>

To add buttons in sidebar:


(1). Go to blogger Dashboard.


(2). Go to layout, click on add a gadget, scroll down to Html/javascript, paste the code of desired sharing buttons and click on save.


To add buttons below posts:


(1). Go to blogger dashboard.


(2). Select template and click on Edit Html.


(3). Click anywhere in the Html code and search for below code by using combination of Ctrl+F on your keyboard:



 <data:post.body/> 

(4). Just below it paste the code of buttons which you want to add in your blog.


(5). Finally, click on save template and you are done!


Note: some times in blogger templates/custom templates buttons fails to appear when you try to add them below post, in that case add buttons in side bar of your blog. Buttons will automatically take position under every post. 

Style 2:

Share buttons with counters | 101Helper

How to add these buttons in blogger blog:
  • Go to your blog, click on template and select Edit Html.
  • Search for <head> and copy below code.
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "ur-da93e0a4-1e76-8359-7c36-7675bf5795f", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>  

  • Paste the copied code below <head>.
  • Now copy below code and paste it where you want the buttons to appear.
<span class='st_facebook_vcount' displayText='Facebook'></span>
<span class='st_twitter_vcount' displayText='Tweet'></span>
<span class='st_googleplus_vcount' displayText='Google +'></span>
<span class='st_reddit_vcount' displayText='Reddit'></span>
<span class='st_linkedin_vcount' displayText='LinkedIn'></span>
<span class='st_pinterest_vcount' displayText='Pinterest'></span>
<span class='st_sharethis_vcount' displayText='ShareThis'></span>

Follow above steps which I have mentioned for style 1 buttons to add these buttons either in sidebar or below posts.

Style 3(buttons with counters):

Share buttons with counters | 101Helper


To add buttons with counters in your blog follow same steps which are used for style 2 buttons except step 4. When you reach to step 4 add below code instead of that which is mentioned in step 4.

<span class='st_facebook_vcount' displayText='Facebook'></span>
<span class='st_twitter_vcount' displayText='Tweet'></span>
<span class='st_linkedin_vcount' displayText='LinkedIn'></span>
<span class='st_reddit_vcount' displayText='Reddit'></span>
<span class='st_pinterest_vcount' displayText='Pinterest'></span>

<span class='st_sharethis_vcount' displayText='ShareThis'></span> 

Follow above steps which I have mentioned for style 1 buttons to add these buttons either in sidebar or below posts.

Style 4(floating buttons):

Similar to other platforms Sharethis also provides floating buttons. It has its own style floating buttons. You can change their position from left to right only i.e sharethis buttons floats only on left side or right side of blog. To add sharethis floating buttons to your blog follow below steps:

floating buttons for blogger
  • Go to blogger dashboard.
  • Select template and click on Edit Html.
  • In the Html page click anywhere in the Html and search for <head>.
  • After <head> paste the below code:
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript" src="http://s.sharethis.com/loader.js"></script>
  • Click on save template and go to layout.
  • In the layout page click on add a gadget and scroll down to Html/javascript.
  • Copy below code and paste it into Html/javascript tab.
<script type="text/javascript">stLight.options({publisher: "ur-d7865298-f710-6b78-455b-a2713e8896d3", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
<script>
var options={ "publisher": "ur-d7865298-f710-6b78-455b-a2713e8896d3", "position": "left", "ad": { "visible": false, "openDelay": 5, "closeDelay": 0}, "chicklets": { "items": ["facebook", "twitter", "linkedin", "pinterest", "googleplus", "email", "sharethis"]}};
var st_hover_widget = new sharethis.widgets.hoverbuttons(options);
</script>
  • Click on save and you are done, this gadget automatically takes its position on all blogs.
Customization:

As I told you above that you can change position of floating buttons from left to right on your blog so here I am going to tell you how can you do that, its very easy all you have to do is to make a little change in the code shown in second last step. If you want floating buttons on left side then don't make any changes just follow above steps but if you want the buttons to float on right side of your blog then just replace "left" with "right" in the code above and you are done. You can also control delay of your buttons, if you want buttons to appear late then in the above code increase number 5 in the orange highlighted piece of code but if you want buttons to load fast decrease 5 to 2 or 3. It may stop working when you try to make changes in open delay so if it happens then undo all changes.

Egg sharing buttons by Sharethis:

This is a unique gadget. It is an Egg which appears where you add the code of this gadget like on sidebar and show buttons when hovered by mouse. It is a good way to attract visitors to share your posts. I am not showing its code and method of use here as previously I have created a detailed post about it. You can read that at http://101helper.blogspot.com/2014/09/how-to-add-responsive-egg-sharing.html. In this post I have shared codes of this gadget and step by step tutorial to use this gadget.  

Floating buttons with counters:



All in one social sharing buttons for blogger

Floating buttons are mostly used buttons in blogs and sites. Floating buttons are of different styles, some simple styles are discussed above. Like other buttons some floating buttons also have counters which helps you know how many people have shared your post. These buttons also lets you show off number of shares to visitors. Therefore I am sharing floating buttons with counters. These buttons have a impressive and responsive design too. You can see a demo on my blog on your left side. These buttons take their positions automatically you don't need to position them. For example if you choose left style these buttons will show up on left side of your blog and will adjust automatically no matter what your blog's width is. To add floating buttons with counter on your blog follow below steps:

  • Go to blogger dashboard.
  • Select layout and click on add a gadget.
  • A small pop-up window will be opened, scroll it down and find Html/javascript.
  • Click on Html/javascript and choose a style below:
Style 1(Floating buttons on left side):

<script async src="https://lessbuttons.com/script.js?facebook=1&twitter=1&googleplus=1&linkedin=1&pinterest=1&reddit=1&vkontakte=auto&odnoklassniki=auto"></script>

Style 2(Floating buttons at the bottom of blog):

<script async src="https://lessbuttons.com/script.js?facebook=1&twitter=1&googleplus=1&linkedin=1&pinterest=1&reddit=1&vkontakte=auto&odnoklassniki=auto&position=bottom"></script>

Style 3(Floating buttons on right side):

<script async src="https://lessbuttons.com/script.js?facebook=1&twitter=1&googleplus=1&linkedin=1&pinterest=1&reddit=1&vkontakte=auto&odnoklassniki=auto&position=right"></script>
  • Copy code of the style which you like and paste it in Html/javascript window.
  • Click on save and you are done.
Style 4(round floating buttons):


horizontal floating buttons for blogger | 101helper

<script>
document.write('<script src="//sharebutton.net/plugin/sharebutton.php?type=vertical&u=' + encodeURIComponent(document.location.href) + '"></scr' + 'ipt>');
</script>

Style 5( horizontal floating buttons):


horizontal floating buttons for blogger | 101helper

<script>
document.write('<script src="//sharebutton.net/plugin/sharebutton.php?type=horizontal&u=' + encodeURIComponent(document.location.href) + '"></scr' + 'ipt>');
</script>


Style 6(Horizontal floating social media bar): 



Horizontal floating social media bar floats over each post, it lies below every post title and when the page scrolls down it floats at the top of each post. You can read a detailed post about this gadget here

Wordpress style responsive follow buttons:


Stylish follow buttons for blogger | 101helper
<style>
@import url(http://weloveiconfonts.com/api/?family=zocial);
/* zocial */
[class*="zocial-"]:before {
  font-family: 'zocial', sans-serif;
}
.wrapper{
  width: 430px;
  height: 50px;
  position: absolute;
top: 91%;
  left: 74%;
  margin-left: -162px;
  margin-top: -25px;
}

.icon{
  display: inline-block;
  position: relative;
  color: #bdbdbd;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 1.47em;
  line-height: 2em;
  background-color: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0px 3px 0px #bdbdbd, 0px 3px 10px #bababa;
  -webkit-transition:background-color 250ms ease 0s;
  transition:background-color 250ms ease 0s;
}

.zocial-facebook{margin-left: -8px;margin-left: -2px;
  position: relative;
  top: 6px;}

.icon.facebook:hover{background-color: #4986c7;}
.twitter:hover{background-color: #4cb6e8;}
.linkedin:hover{background-color: #29a0cc;}
.youtube:hover{background-color: #a32929;}
.e-mail:hover{background-color: #40C041;}
.google:hover{background-color: #C75345;}
.reddit:hover{background-color: #eaeaea;}
.instagram:hover{background-color: #4E91F0;}


a{
  text-decoration: none;
}
a:hover{
text-decoration: none;
}
.icon:hover{
  color: #fff;
  box-shadow: 0px 3px 0px #686868, 0px 3px 10px #7e7e7e;
}

.icon:active{
  box-shadow: inset 0px 1px 4px #3d3d3d, 0px 0px 0px #bdbdbd;
  top: 3px;
}
span.zocial-instagram,span.zocial-linkedin,span.zocial-email,span.zocial-reddit,span.zocial-youtube,span.zocial-twitter,span.zocial-google {
  position: relative;
  top: 5px;
}
</style>
<div class="wrapper">
  <a class="icon facebook" href="#"><span class="zocial-facebook"></span></a>
  <a class="icon twitter" href="#"><span class="zocial-twitter"></span></a>
<a class="icon google" href="#"><span class="zocial-google"></span></a>
  <a class="icon linkedin" href="#"><span class="zocial-linkedin"></span></a>
<a class="icon youtube" href="#"><span class="zocial-youtube"></span></a>
<a class="icon e-mail" href="#"><span class="zocial-email"></span></a>
<a class="icon reddit" href="#"><span class="zocial-reddit"></span></a>
<a class="icon instagram" href="#"><span class="zocial-instagram"></span></a>

  </div>

Pulso Social Sharing buttons:

Pulso sharing buttons are very responsive and easy to use. Though it is a Russian company but you can translate their site. They have many types of buttons but I have brought you a simple and with counters buttons.

(1). Simple pulso single line horizontal sharing buttons.

pulso sharing buttons for blogger

<script type="text/javascript">(function() {
  if (window.pluso)if (typeof window.pluso.start == "function") return;
  if (window.ifpluso==undefined) { window.ifpluso = 1;
    var d = document, s = d.createElement('script'), g = 'getElementsByTagName';
    s.type = 'text/javascript'; s.charset='UTF-8'; s.async = true;
    s.src = ('https:' == window.location.protocol ? 'https' : 'http')  + '://share.pluso.ru/pluso-like.js';
    var h=d[g]('body')[0];
    h.appendChild(s);
  }})();</script>

<div class="pluso" data-background="#ebebeb" data-options="medium,square,line,horizontal,counter,theme=04" data-services="vkontakte,odnoklassniki,facebook,twitter,google,moimir,email,print"></div>

(2). Simple pulso double line horizontal sharing buttons.

pulso sharing buttons for blogger 101helper

<script type="text/javascript">(function() {
  if (window.pluso)if (typeof window.pluso.start == "function") return;
  if (window.ifpluso==undefined) { window.ifpluso = 1;
    var d = document, s = d.createElement('script'), g = 'getElementsByTagName';
    s.type = 'text/javascript'; s.charset='UTF-8'; s.async = true;
    s.src = ('https:' == window.location.protocol ? 'https' : 'http')  + '://share.pluso.ru/pluso-like.js';
    var h=d[g]('body')[0];
    h.appendChild(s);
  }})();</script>
<div class="pluso" data-background="#ebebeb" data-options="medium,square,multiline,horizontal,counter,theme=04" data-services="vkontakte,odnoklassniki,facebook,digg,twitter,blogger,delicious,google,moimir,email,pinterest,print"></div>

(3). Pulso vertical double line social sharing buttons.

pulso vertical sharing buttons for blogger 101helper

<script type="text/javascript">(function() {
  if (window.pluso)if (typeof window.pluso.start == "function") return;
  if (window.ifpluso==undefined) { window.ifpluso = 1;
    var d = document, s = d.createElement('script'), g = 'getElementsByTagName';
    s.type = 'text/javascript'; s.charset='UTF-8'; s.async = true;
    s.src = ('https:' == window.location.protocol ? 'https' : 'http')  + '://share.pluso.ru/pluso-like.js';
    var h=d[g]('body')[0];
    h.appendChild(s);
  }})();</script>
<div class="pluso" data-background="#ebebeb" data-options="medium,square,multiline,vertical,counter,theme=04" data-services="vkontakte,odnoklassniki,facebook,digg,twitter,blogger,delicious,google,moimir,email,pinterest,print"></div>

(4). Pulso vertical single line social sharing buttons.

pulso vertical sharing buttons for blogger

<script type="text/javascript">(function() {
  if (window.pluso)if (typeof window.pluso.start == "function") return;
  if (window.ifpluso==undefined) { window.ifpluso = 1;
    var d = document, s = d.createElement('script'), g = 'getElementsByTagName';
    s.type = 'text/javascript'; s.charset='UTF-8'; s.async = true;
    s.src = ('https:' == window.location.protocol ? 'https' : 'http')  + '://share.pluso.ru/pluso-like.js';
    var h=d[g]('body')[0];
    h.appendChild(s);
  }})();</script>
<div class="pluso" data-background="#ebebeb" data-options="medium,square,line,vertical,counter,theme=04" data-services="facebook,twitter,blogger,delicious,google,pinterest"></div>

(5). Pulso social sharing buttons with counters.

pulso share buttons with counters

<script type="text/javascript">(function() {
  if (window.pluso)if (typeof window.pluso.start == "function") return;
  if (window.ifpluso==undefined) { window.ifpluso = 1;
    var d = document, s = d.createElement('script'), g = 'getElementsByTagName';
    s.type = 'text/javascript'; s.charset='UTF-8'; s.async = true;
    s.src = ('https:' == window.location.protocol ? 'https' : 'http')  + '://share.pluso.ru/pluso-like.js';
    var h=d[g]('body')[0];
    h.appendChild(s);
  }})();</script>

<div class="pluso" data-background="none;" data-options="medium,square,line,horizontal,counter,sepcounter=1,theme=14" data-services="facebook,twitter,blogger,delicious,google,pinterest"></div>

You can generate your own Pulso buttons here.

Final words:

Similar to above mentioned platforms some other platforms are also available but they require registration and need purchase to use their buttons. All the above buttons are free to use, I hope you like this post and all buttons are working on your blog if you have any problem ask me in comments or contact me. Follow and subscribe to get latest news about blogger gadgets, tutorials, tips, tricks and seo. If you like this post then take a second to share it with others. 

Search Tags: social buttons, sharing buttons, All in one sharing buttons for blogger, sharing buttons for blogger, share buttons for blog, how to add share buttons in blogger, floating buttons, horizontal sharing buttons, how to add share buttons below posts, 101Helper sharing buttons for blogger blog, Responsive buttons for blog, stylish sharing buttons for blogger blog.

Kategori

Kategori