How to disable Right Click on a image? [closed]

You can use the following CSS

img{
  pointer-events: none!important;
}

Please note: Frontend assets like images are accessible. If anyone who knows CSS he/she can alter the code by inspecting it. But for normal user it is fine.

Hope it helps!