Tweetmeme gives you two types of buttons,
* A button, which looks somewhat alike the Digg button

* A Compact version which fits in less space
1.Login to your blogger account using your id
2.In your dashboard click layout
3.In the layout click Edit Html in the tab bar
4.In the click Expand Widget.You may need to backup you template
5.In your template Use CTRL + F to open search,
<p><data:post.body/></p>
And add the below code like as below:-
<p><data:post.body/>
<div style='float:right; margin-left:10px;'>
<script type="text/javascript">
tweetmeme_url = '<data:post.url/>';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"> </script>
</div>
</p>
This will add retweet button to your right of blogger post at beggining,if dont find the code enclosed in </p> Add above codes after it <data:post.body/> this will add this retweet button at end of the post.
Add below codes after this <data:post.body/> code to place button at end of post.
<script type="text/javascript">
tweetmeme_url = '<data:post.url/>';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"> </script>
If you wanna use compact button code use below one.
<script type="text/javascript">
tweetmeme_style = "compact";
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
Save your template and done.





0