As Facebook mentioned in their Developer Blog:
"The Send button is a social plugin that websites can use to let people send a link to a friend through Facebook Messages, post it to a Group, or email it to an individual. For example, if you see a Mother's Day gift idea on 1-800-Flowers.com, you can now send a message or email to your family members to discuss. Or say you're training for a marathon and you come across a great article about running shoes on The Huffington Post. Now you can share it with your entire running group in just one click."
Try this :
Follow these steps to add the "Facebook Send Button" to your Blogger blog.
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:
</head> |
<script src='http://connect.facebook.net/en_US/all.js#xfbml=1' type='text/javascript'/> |
Step 3 :
Now find (CTRL+F) this in the code:
<data:post.body/> |
<div style="float:left; padding:4px;"> |
- To change the button position from "Top-Left" to "Top-Right" just change the float position to left. i.e.
float:right
changes tofloat:left
. - To place the Facebook Send button at the end of your post paste the code after/below
<data:post.body/>
. - To change the light light color scheme button to dark, just change this code in the above codes,
colorscheme="light"
tocolorscheme="dark"
Step 4 :
Save the template.