How your blog content is copied?
- Select - Copy - Paste. This can be done using your browser's menu, the right-click context menu or using shortcut keys.
- Select - Drag - Drop. Text and images can be selected and dragged into another window.
- Copy from RSS feed. If you want to copy an entire post this option is best. Scrapers love RSS feed because it delivers your latest post to them. They can copy all your latest content without even visiting your blog!
- Copy from source code.
How to safeguard your content ?
1) Disable text selection
-webkit-user-select: -khtml-user-select: none; -moz-user-select: -moz-none; -ms-user-select: none; user-select: none;
Example, if you want to disable text selection in Blogger posts, then the code is:
.post {-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: -moz-none; -ms-user-select: none; user-select: none;}
This CSS will disable text selection on the element and all it's children. It should work on Firefox, Safari, Chrome and IE10+. For IE9 and below, use onselectstart='return false' event handler, see II).
<code>
tag, then the code you need is:.post code {-webkit-user-select: text; -khtml-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text;}
2) Disable drag and drop
ondragstart='return false'
- Go to Template > Edit HTML and click anywhere inside the editor.
- Press Ctrl+F (Cmd+F in Mac), and a search box should appear on the upper right corner of the editor.
- Use the search box to jump to this code:
<b:includable id='post' var='post'>
- Next, click the arrow tip on the left of that line to expand the code. Once expanded, the second line should look something like this:
<div class='post hentry' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
- Insert the event handlers into the tag like this:
<div class='post hentry' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting' ondragstart='return false' onselectstart='return false'>
(onselectstart='return false' is added to disable text selection in IE9 and below.)
3) Disable right click (only on images)
4) Shorten RSS feed
5) Watermark images
Click here for more Tips
Click for blogger templates
Click here for blogger tools
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.