Ok, so I need to put a watermark or something on all my photos. OR I need to disable right click on photos only.
The reason, it's a photography network, photographers want their work protected.
The method? I've read on another post here on Creators, that you can add a class to all photos, and then use CSS or something to put a watermark on that class. Make sense? How do I do that?
Also, I know that one can disable right clicking on their networks, which is great, however one can not right click to spell check once this method is implemented... so, if a class can be defined to the photos, can you not define a "no right click" on that class?
I'd like to implement both things, any help on this subject would be greatly appreciated. Thank you.
Tags: no right click, photos, watermark
Permalink Reply by Damien Hannah on November 23, 2012 at 12:14pm How about this!!!
Is it possible to embed or overlay a transparent layer over the photos pages (main photo page hosting the full size photo, and the "view full size" screen which could likely just be disabled.
within that transparent layer is the no right click script. which means that anywhere else on the site, you can right click for commenting, forum, and blog purposes. But the photos pages will deter photo theft. (thiefs will go for full size images. so I need to prevent this from happening somehow.)
Permalink Reply by Ron Fritzemeier on November 23, 2012 at 3:46pm
Permalink Reply by Damien Hannah on November 25, 2012 at 12:58am I really, really need to do something like right now. my members are going to jump ship (the professional ones that will skyrocket my site to magazine connections etc!!!!)
THIS IS MEGA IMPORTANT.
I just need to do SOMETHING.
Watermark, disable right click, and disable the photo screen that shows the full image (the one that seems to leave the network to view photo, favicon disappears.)
These three things will help signifcantly until such time as a server can be set to re process images before hitting ning servers, or when I have my own servers.
MY SITE CAN SKYROCKET IF I CAN FIGURE THIS OUT IMMEDIATELY!!
Please, please help me, anyone.... :(
Permalink Reply by Ron Fritzemeier on November 25, 2012 at 10:22am
Permalink Reply by Ron Fritzemeier on November 25, 2012 at 10:23am
Permalink Reply by Ron Fritzemeier on November 25, 2012 at 10:25am
Permalink Reply by George H. Compton IV on November 25, 2012 at 11:31am If that one didn't work try this one
<script language=JavaScript>
<!--
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="Function Disabled!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script>
Kos replied to SM's discussion 'How to Target the First Page of your Site with CSS'© 2013 Created by Ning.
