How To Add Facebook Like Button To Blogger Read more: http://www.trickiezone.com/2011/12/how-to-add-facebook-like-button-to.html#ixzz2RBFmZ6Sf

Step 1: Go to Template >> Edit HTML >> and tick Expand Widget Templates.
Step 2: Ctrl+F and find <data:post.body/> with this <b:if cond='data:blog.pageType != &quot;staticpage&quot;'> tag.
Step 3: Copy and paste the code after <b:if cond='data:blog.pageType != &quot;static
page&quot;'> tag.
Step 4: Save your template.

Standard Facebook Like Button

Code:
  1. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>  
  2. <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url + &quot;&amp;send=false&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=35&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:450px; height:35px;'/></b:if>  

Facebook Like Button with Box Count

Code:

  1. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>  
  2. <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url + &quot;&amp;send=false&amp;layout=box_count&amp;show_faces=false&amp;width=55&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=65&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:55px; height:65px;'/></b:if>  

Facebook Like Button with Button Count

 

Code:

  1. <b:if cond='data:blog.pageType != &quot;static_page&quot;'>  
  2. <iframe allowTransparency='true' expr:src='&quot;http://www.facebook.com/plugins/like.php?href=&quot; + data:post.url + &quot;&amp;send=false&amp;layout=button_count&amp;show_faces=false&amp;width=90&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21&quot;' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:90px; height:21px;'/>  
  3. </b:if>  

 

Customizations:

You can change the following:

  • The color by changing colorscheme=light to colorscheme=dark
  • The width and height.
  • The “Like” word to “Recommended” by changing action=like to action= recommend
  • Show faces by changing show_faces=false to show_faces=true.
  • And turn off Send by applying send=true to send=false.

 

  • font=lucida%2Bgrande
  • font=segoe%2Bui
  • font=tahoma
  • font=trebuchet%2Bms
  • font=verdana

 

For better instructions go to original page in here : http://www.trickiezone.com/2011/12/how-to-add-facebook-like-button-to.html

    Related Posts Plugin for WordPress, Blogger...