Adding up a Twitter Retweet Button to promote your blog


Many bloger are using twitter to promote thier blog because of its simple concepts and less consuming time. Basically the concept of "retweeting" is allowing your blog readers to broadcast your post, to thier followers in twitter, its like sharing what they have read to thier followers and giving your blog a maximum audience.



Go to layout the Edit Html





1. back up your file
2. check expanded widget template
3. control F to reveal the Html Search box tool
4. copy this code and paset this code at the search box

<div class='post-header-line-1'/>

5.find the location of the code
6. paste your desire retweet code

FOR RIGHT BUTTON



<div style="float:right;padding:4px;">
<script type="text/javascript">
tweetmeme_url = '<data:post.url/>';
tweetmeme_source = 'TWITTER_USER_NAME';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script> </div>

FOR LEFT BUTTON




<div style="float:left;padding:4px;">
<script type="text/javascript">
tweetmeme_url = '<data:post.url/>';
tweetmeme_source = 'TWITTER_USER_NAME';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script> </div>

RIGHT BUTTON COMPACT




<div style="float:right;padding:4px;"><script type="text/javascript">
tweetmeme_style = 'compact';
tweetmeme_url = '<data:post.url/>';
tweetmeme_source = 'TWITTER_USER_NAME';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script> </div>

LEFT COMPACT BUTTON



<div style="float:left;padding:4px;"><script type="text/javascript">
tweetmeme_style = 'compact';
tweetmeme_url = '<data:post.url/>';
tweetmeme_source = 'TWITTER_USER_NAME';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js">
</script> </div>

SAMPLE TWITTER USER NAME



7. CLICK SAVE AND DONE

Comments