Learn how to disable text selection and prevent your content from being copied and pasted in blogger.
Many content thieves try to copy content and publish on their own blog. So we need to secure our website content from thieves on the web and try to do something that no one can’t copy your content but how is it possible?
Yes, we can do it by disabling Select and copy content on web page.
Disable Text Selection and Copy text in blogger
Step 1: Go to Blog → Theme → Edit HTML
Step 2: Click anywhere in code area and Press CTRL+F
Step 3: Paste ]]></b:skin> in Search box and hit enter
/*----- Disable Text Selection with CSS Code--- alychidesigns----Start*/ .post blockquote { -webkit-user-select: text !important; -moz-user-select: text !important; -ms-user-select: text !important; user-select: text !important;} body { -webkit-user-select: none !important; -moz-user-select: -moz-none !important; -ms-user-select: none !important; user-select: none !important; } /*----- Disable Text Selection with CSS Code--- bestbloggerlab----End*/
Step 5: Save your template.
How to make particular text is Selectable:
Sometimes we need to provide some part of the content to copy to readers So in this case when you write content in your post use blockquote. To make text selectable write your content in <blockquote> tag
Example: Edit in Html of Post Composer
<blockquote>
Write Selectable Text Here
</blockquote>
I hope you like this post so don’t forget to share this post in your network.