Hello Guys,Today in this article we will explain you How to disable copy text selection using CSS in your blogger template.Just add this CSS into your Blogger website to prevent/Restrict users selecting/Copy text of your website or blog.We are using pure CSS for this trick you don't have to add lot of codes.To add this trick in your blogspot template follow the steps mentioned below.
Recommended : How To Disable Right Click In Blogger Template
How to Disable Copy or Select Text In Blogger Template By Using CSS:
installation steps:
Step 1. Log in to your Blogger account and Go to your Blogger Dashboard.
Step 2. Now Click on -> Template -> Edit HTML.
Step 3. Now Search for ]]></b:skin> by Pressing Ctrl+F keys.
Step 4.Copy the below code and paste it just before the ]]></b:skin> tag.
We hope this article helped you to learn How to Disable Copy Text Selection In Blogspot Theme By Using CSS.If you liked this article please Join us on Facebook,Twitter,Google Plus.
body {Step 5. Now Save your template..you are Done !!
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}