Author Topic: removing things....  (Read 3973 times)

0 Members and 1 Guest are viewing this topic.

Offline iwod

  • Pre-Newbie
  • Posts: 1
    • View Profile
removing things....
« on: December 07, 2002, 06:02:19 PM »
on the demo page, when ther user left click, it has a copyright thing pop out. I am wondering is that to use for protection against people downloading the image from your gallary??

If that is the case then can i change the text to something else??

Offline Coastie

  • Newbie
  • *
  • Posts: 15
    • View Profile
    • http://www.greytalk.com
removing things....
« Reply #1 on: December 07, 2002, 11:43:14 PM »
es, that makes it a little harder to grab an image, but nothing a simple enter key can't stop.

to change or remove that function  go to template=>defualt => header.html

loog for this text:


Code: [Select]
<script language="javascript" type="text/javascript">
<!--
function opendetailwindow() {
window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
}

function right(e) {
if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) {
alert("© Copyright by {site_name}");
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) {
alert("© Copyright by {site_name}");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// -->
</script>


you can remove it totally, or change the alert("© Copyright by {site_name}"); everywhere to what ever you like.