Add Social sharing Buttons Horizontally
Content is free. When you buy through links on my site, I may earn affiliate commission. Learn More.
Social sharing buttons are important tools to have for a blogger Because With the social sharing button your users can share things easily and there is every chance of your site getting viral easily.
Add Facebook Like & Send, Twitter Tweet and Google +1 social sharing button Horizontally in Blogger. Simply remove your existing buttons and add the new code using the following steps:
How to Add Social sharing Buttons Horizontally:
1. Go to Design > Edit HTML (New interface: Template > Edit HTML).
2. Tick the Expand Widget Templates checkbox on top right of the code window.
3. Next, look for <data:post.body/> tag and paste the following code immediately above it:
<!-- Scripts Start --> <b:if cond='data:post.isFirstPost'> <!-- Facebook --> <div id='fb-root'/> <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 = "https://connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <!-- Google +1 --> <script type='text/javascript'> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> <!-- Twitter --> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> </b:if> <!-- Scripts End --> <!-- Horizontal social buttons Start --> <div class='horizontal-social-buttons' style='padding:10px 0 10px;'> <!-- Facebook Like+Send --> <div style='float:left;'> <fb:like colorscheme='light' expr:href='data:post.url' font='' layout='button_count' send='true' show_faces='false'/> </div> <!-- Twitter --> <div style='float:left;'> <a class='twitter-share-button' data-count='horizontal' data-lang='en' data-related='' data-via='' expr:data-text='data:post.title' expr:data-url='data:post.url' href='https://twitter.com/share'>Tweet</a> </div> <!-- Google +1 --> <div style='float:left;'> <g:plusone annotation='bubble' expr:href='data:post.url' size='medium'/> </div> <!-- Pinterest Start --> <b:if cond='data:blog.pageType == "item"'> <div id='pin-wrapper' style='display: inline;'> <a class='pin-it-button' count-layout='horizontal' expr:href='"https://pinterest.com/pin/create/button/?url=" + data:post.url'>Pin It</a> <a href='javascript:void(run_pinmarklet())' style='margin-left:-93px; width:43px; height:20px; display:inline-block;'/> </div> <script src='https://assets.pinterest.com/js/pinit.js' type='text/javascript'></script> <script type='text/javascript'> function run_pinmarklet() { var e=document.createElement('script'); e.setAttribute('type','text/javascript'); e.setAttribute('charset','UTF-8'); e.setAttribute('src','https://assets.pinterest.com/js/pinmarklet.js?r=' + Math.random()*99999999); document.body.appendChild(e); } </script> </b:if> <!-- Pinterest End --> </div> <div style='clear: both;'/> <!-- Horizontal social buttons End -->
4. Button positioning
To position the buttons at the bottom of post, place the code below (instead of above) <data:post.body/>
5. Submit it.
You can also use the Older Code:
<!-- Scripts Start --> <div class='socialshare'> <ul> <li style='margin: 0 0px 0 -19px;'><iframe allowTransparency='true' expr:src='"https://www.facebook.com/plugins/like.php?href=" + data:post.url + "&layout=button_count&show_faces=false&width=100&action=like&font=arial&colorscheme=light&height=21"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:100px; height:21px;'/> </li> <li style='margin: 0pt 15px 0pt 0px;'><a class='twitter-share-button' data-count='horizontal' data-via='blogger' href='https://twitter.com/share'>Tweet</a><script src='//platform.twitter.com/widgets.js' type='text/javascript'/> </li> <li style='margin: 0pt 20px 0pt 0px;'> <script src='https://platform.linkedin.com/in.js' type='text/javascript'/> <script data-counter='right' data-url='https://pinup3.blogspot.in' type='IN/Share'/> </li> <li style='margin: 0pt 15px 0pt 5px;'> <script src='https://apis.google.com/js/plusone.js' type='text/javascript'/> <g:plusone size='medium'/></li> <li style='margin: 0pt 2px 0pt 0px;'> <script src='https://www.stumbleupon.com/hostedbadge.php?s=1'/> </li> </ul> </div> <!-- Script End -->
This code excludes the Pinterest button.
You need to remove these lines of code, to ensure that the Pinit button appears on the blogger homepages,
ReplyDelete<b:if cond='data:blog.pageType == "item"'>
[/b:if>]
You can space out each button by adding margin right to the div style
[div style='float:left; margin-right: 15px;']
Anyone know how to make sure that the facebook button stay's on the horizontal mines always about 2px lower than the rest ?
ReplyDelete