digg: How to add Digg vote buttons for each post in Blogger?
Open your Blogger template > Backup > Check the " Expand Widget Templates " box > Find for this line.
<data:post.body/>
Paste the following code before the code stated above.
<!-- DIGG -->
<div style='float:right; padding: 3px;'>
<script type='text/javascript'>
digg_url = '<data:post.url/>';
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'/>
</div>
<!-- DIGG -->
This is how it will look like in every blog posts
.
And this is another type of Digg vote button. The Compact version. To add it, find for this code.
<div class='post-header-line-1'>
And paste the code below after it.
<!-- DIGG -->
<div style='float:right; margin-top:4px;'>
<script type='text/javascript'>
digg_url = "<data:post.url/>";
digg_skin = "compact";
digg_window = "new";
</script>
<script src='http://digg.com/tools/diggthis.js' type='text/javascript'></script>
</div>
<!-- DIGG -->
This is how it will look like in blog post.
No comments:
Post a Comment