In this section, I will discuss on topic how to disable users from selecting and copying text, images on our Blog or Website. This would definitely help us to get rid from the user's to copy our content.

We can disable the choice of text or pictures on any web site or blog to command others from repetition your contents. It can be done using CSS simply. you simply need to build some tiny customization counting on your wants.



body {

  -webkit-user-select: none;  /* Chrome all / Safari all */

  -moz-user-select: none;     /* Firefox all */

  -ms-user-select: none;      /* IE 10+ */

  -o-user-select: none;

  user-select: none;        

}


The above CSS will help you disable selections on elements such as text, images, tables etc.



 ......................................................................................


.post-body {

  -webkit-user-select: none;  /* Chrome all / Safari all */

  -moz-user-select: none;     /* Firefox all */

  -ms-user-select: none;      /* IE 10+ */

  -o-user-select: none;

  user-select: none;        

}




The above CSS will help you to disable selecting and copying of post-body section from your blog on blogger.

 .............................................................................................................................................

body img {

  -webkit-user-select: none;  /* Chrome all / Safari all */

  -moz-user-select: none;     /* Firefox all */

  -ms-user-select: none;      /* IE 10+ */

  -o-user-select: none;

  user-select: none;        

}


 The above CSS will help you to disable selections for images in the complete page.

 ..............................................................................................................................................

  Or if you would like to disable selection for images in post area only, then the below CSS will work for Blogger.
 


.post-body img {

  -webkit-user-select: none;  /* Chrome all / Safari all */

  -moz-user-select: none;     /* Firefox all */

  -ms-user-select: none;      /* IE 10+ */

  -o-user-select: none;

  user-select: none;      

}