Tuesday, June 25, 2013

1:20 PM

Reblog Your Own Posts on Blogger
 How To Allow Users To Reblog Your Posts In Blogger Platform Like Tumblr?

Have you seen the Tumblr website; which had been acquired by Yahoo, In that site there is an option about Reblog or share you content. Now this site I come with similar blog how you can get similar blog in blogger blog? Very simple, Granting you audience to Reblog or spread you content on their blogs. Why this option is good for? This feature is effective for a post goes viral like other sites do. Couple of months before my blog friend asked me why you not add Reblog option for your readers. On that time I didn’t understand their question but now I realized that, this option could be benefit for me and for others also. What if somebody idolized my post and wishers to spread it on their blog? In this scenario, you can provide them one step solution which will not only share your content across the internet, as well that it also assists you to earn a previous backlinks. So, today in this blog post, we will display you how to enable users to Reblog your posts in Blogger?

For Example,
Reblog your Posts in Blogger
Why to permit uses to Reblog your Blog Posts?

Various folk might take it in a other way as permitting users to spread your blog posts on their blogs and secondly there is a chance of plagiarism. Am I right? How you thinking that? Nevertheless, there is an unexpected. Have you used the Tumblr blog? No, If someone Reblog your post in Tumblr then it shows the credit in the last line which indicate that, where the post came from. Just like similar thing do in blogger post. A credit backlink of the real source is always there, so it means you would cover to be an real author.

On the other side of this, you can get huge high quality and natural backlinks which is necessary nowadays after Penguin. Google want only natural backlinks rather than link building. Just wonder that if your blog has 50 posts and each post is Reblog by 2000 peoples and inversely you get plenty of valued backlinks to your site or blog. It will also advantage you by allowing for site or blog with more popularity as folk might follow your website or blog from being the real author.

Like, as shown in example.
Real Author On TipTechNews

Steps - How to Add a Reblog Icon or Button to your posts in Blogger?

Step#1 – Login into your Blogger control panel.
Step#2 – After signing in go to your blog >> Template >> Edit HTML >>
Step#3 – Search for the ]]> code.
Step#4 – After finds it, just paste the above following CSS code in your HTML area.

.reblog {
color: #fff;
font-weight: bold;
font-size: 14px;
text-shadow: 1px 1px 0 #75a43b;
padding: 5px 10px;
display: inline;
border: 1px solid #69963b;
background: #7cc237;
border-radius: 2px;
background: -webkit-gradient(linear, left top, left bottom, from(#afd95b), to(#7cc237));
background: -webkit-linear-gradient(top, #afd95b, #7cc237);
background: -moz-linear-gradient(top, #afd95b, #7cc237);
background: -ms-linear-gradient(top, #afd95b, #7cc237);
background: -o-linear-gradient(top, #afd95b, #7cc237);
box-shadow: inset 0 1px 0 #d0e8a0;
-webkit-box-shadow: inset 0 1px 0 #d0e8a0;
-moz-box-shadow: inset 0 1px 0 #d0e8a0;
-o-box-shadow: inset 0 1px 0 #d0e8a0;
}

.blogthis a {
color: #fff; text-decoration:none;}

a.reblog:hover {
color: #fff;
background: #7cc62b;
background: -webkit-gradient(linear, left top, left bottom, from(#b5e261), to(#7cc62b));
background: -webkit-linear-gradient(top, #b5e261, #7cc62b);
background: -moz-linear-gradient(top, #b5e261, #7cc62b);
background: -ms-linear-gradient(top, #b5e261, #7cc62b);
background: -o-linear-gradient(top, #b5e261, #7cc62b);
text-decoration:none;
}
Once you added the CSS code, now time to add the code which would make the code work. Simple find out for <div class='post-footer'> and paste the following code which mentioned at above. Once you did everything, simple click on “Save Template” button to end the procedure.
 <div class="reblogme"><li class='blogthis'><b:if cond='data:top.showBlogThisButton'>
<a class='reblog' expr:href='data:post.sharePostUrl + &quot;&amp;target=blog&quot;' expr:onclick='&quot;window.open(this.href, \&quot;_blank\&quot;, \&quot;height=270,width=475\&quot;); return false;&quot;' expr:title='data:top.blogThisMsg' target='_blank'>Reblog This Post</a></b:if>
 </li></div>