View Demo
How To Add Horizontal Floating Share Bar To Blogger?
- Go to Blogger Dashboard > Design > Edit HTML (In new User Interface it is Dashboard > Template)
- Now find for </head> tag in your template.
- Add below code just before </head> tag.
var addthis_config = {
bar_show_below : 150
}
</script>
<script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js"></script>
Now find for </body> tag.
Add below code just before </body> tag.
<div class="addthis_bar addthis_bar_medium">
<label>Share This Page:</label>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<span><a class="addthis_button_preferred_1"></a></span>
<span><a class="addthis_button_preferred_2"></a></span>
<span><a class="addthis_button_preferred_3"></a></span>
<span><a class="addthis_button_preferred_4"></a></span>
<span><a class="addthis_button_compact"></a></span>
<span><a class="addthis_counter addthis_bubble_style"></a></span>
</div>
</div>
Now save your template and you are done..
Go to your blog,you will see this floating horizontal share menu.