Linkedin has got 3 different sharing buttons.
Integrating this into blogger will require some template edits.
To add this widget to blogger, follow these instructions:
Step 1:
Log in to Blogger, go to Design / Layout > Edit HTML and tick the "Expand Widget Templates" checkbox.
Step 2:
Now find (CTRL+F) this in the code:
<data:post.body/>
Vertical Count Button:
Case 1:
To place the linkedin share button at the top right corner of your post paste this code before/above it :
<div style="float:right;padding:4px;">
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-counter="top" expr:data-url="data:post.url">
</script>
</div>
NOTE: Don't forget to save the template.
NOTE: To change the button position from "Top-Right" to "Top-Left" just change the float position to left. i.e.
float:right
changes to float:left
check it in Case 2 below.Case 2:
To place the linkedin share button at the top left corner of your post paste this code before/above it :
<div style="float:left;padding:4px;">
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-counter="top" expr:data-url="data:post.url">
</script>
</div>
NOTE: Don't forget to save the template.
Horizontal Count Button:
Case 3:
To place the linkedin share button at the top right corner of your post paste this code before/above it :
<div style="float:right;padding:4px;">
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" data-counter="right" expr:data-url="data:post.url">
</script>
</div>
NOTE: Don't forget to save the template.
No Count Button:
Case 4:
To place the linkedin share button at the top right corner of your post paste this code before/above it :
<div style="float:right;padding:4px;">
<script type="text/javascript" src="http://platform.linkedin.com/in.js"></script><script type="in/share" expr:data-url="data:post.url">
</script>
</div>
NOTE: Don't forget to save the template.
This will put a linkedin share button to every post. But you won't be able to choose which post you want to include or exclude the button.