Disable text selection in your wordpress or blogger sites


Your Website content is most valuable to you. You wrote a valuable article using a long time but someone else is using it by copying it in an instant. If you did another one, your hard work would be of no value. So you can enable copy security of your website articles. In this case, the valuable content you need and the time spent will be safe. If you want, you can easily add copy security to your text using a single CSS code from a mobile or computer device browser user.

What can I do regarding this ?

Well, you just need to disable text selection to your website. You can disable text selection for both type of websites such as mobile and computer. 

If you are want to disable text selection only for mobile users of your website. Just follow this CSS. Include this code in your WordPress or blogger additional CSS section. 

Disable website text selection for mobile or tablet website users - 

@media screen and (max-width: 880px) {
body{-webkit-touch-callout:none;-webkit-user-select: none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
}

Disable website text selection for computer website users - 

@media screen and (max-width: 1000px) {

body{-webkit-touch-callout:none;-webkit-user-select: none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}

}