How to add Retweet Button to Blogger / Blogspot

How to add Retweet Button to Blogger / BlogspotTwitter – Twitter is a free social networking site that enables users to send short notices of 140 characters.

Retweet – This one enables to repost some interesting tweets on twitter.The retweet button can act more like a tweet counter

Adding a retweet button will show a neat count of how many times,your post has been tweeted about,and will also allow your readers to retweet it.

There are two versions of retweet buttons:



The Code for the Default Button is :

<script type="text/javascript"><br />tweetmeme_url = '<data:post.url/>';<br
/></script>

<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script>




The Code for Compact Button is:

<script type="text/javascript"><br />tweetmeme_style = "compact";<br
/></script>

<script type="text/javascript"
src="http://tweetmeme.com/i/scripts/button.js"></script>



Here is how to add them to your blogger post:

If you want it to the left side of blog post:


Find:

<data:post.body>



And Paste this code before that line:

<div style="padding: 3px 5px 5px 0px; float: left;">

<script type="text/javascript"><br />tweetmeme_url = '<data:post.url/>';<br
/></script>

<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script>

</div>




If you want it to the Right Side of post:

<div style="float:right;padding: 3px 0px 3px 3px;">

<script type="text/javascript">

tweetmeme_url = '<data:post.url/>';

</script>

<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script>

</div>


3 Response to "How to add Retweet Button to Blogger / Blogspot"

  1. Thanks for nice shearing. Great work.

    I can't find these codes in my Blogspot html...

    You must check the "Expand Widget Templates" to see the code above

Post a Comment