Sunday, October 6, 2013

Prevent People From Copying Your Blog Content

Hi there!
So happy today,because Ihave something to share with you all Bloggers.I want to remaind you that sometime is worth to protect your content because there are some of us who don't want to suffer searching information for their blogs insteady the just visit other people's blogs and copy everything as if they are the source without crediting to the source or even linkback.But at the end of the day,their blogs are ranked higher than the original source of information.Now today I am going to show you how you can protect your blog content from these types of thieves.



First of all, you have to know how your blog content can be copied
1.Select-Copy-Paste.
2.Select-Drag-Drop.
3.Copy from RSS feed.
5.Copy from source code.

how to safeguard your content.

1.Disable text selection(highlighting the content)
This is making text unselectable,it is the best way of preventing your content because is the
 popular way used to copy contents.Disabling can be implemented only by using CSS.Just apply
the
 following CSS to the element that you want text selection disabled

//css code
-webkit-user-select: -khtml-user-select: none;
 -moz-user-select: -moz-none;
 -ms-user-select: none; 
user-select: none; 
 
for example,if you want to disable text selection in blogger posts,then
 the code is:
 
.post{ 
-webkit-user-select: -khtml-user-select: none; 
-moz-user-select: -moz-none;
 -ms-user-select: none;
 user-select: none; 
} 

2.Re-enable text selection.
sometimes it might happen you post the content which you need part of
 it be copied by your readers,the same CSS code  is applied,
just change value:none to value:text.let say your code is wrapped
 inside <code>, then the code you need will be;
.post code{
-webkit-user-select: -khtml-user-select: text;
 -moz-user-select: -moz-text;
 -ms-user-select: text;
 user-select: text; 
After that save the content you are done! 

Don't miss the next tip on disabling drag and drop.

No comments:

Post a Comment

google +

google +
chris kyando

FIND US ON FACEBOOK