Author Topic: Remove the right-click disabler / or remove only for Members  (Read 175385 times)

0 Members and 1 Guest are viewing this topic.

Offline BlackGoat

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: Remove the right-click disabler
« Reply #15 on: April 02, 2007, 11:01:43 AM »
For version 1.7.4

Find in "header.html":
Code: [Select]
  function right(e) {

    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {

      alert("© Copyright by {site_name}");

      return false;

    }

    else if (event.button == 2 || event.button == 3) {

      alert("© Copyright by {site_name}");

      return false;

    }

    return true;

  }



  if (document.layers){

    document.captureEvents(Event.MOUSEDOWN);

    document.onmousedown = right;

  }

  else if (document.all && !document.getElementById){

    document.onmousedown = right;

  }



document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");

And delete that part.

That's it!
« Last Edit: April 02, 2007, 12:13:00 PM by BlackGoat »

Offline alainwolf

  • Pre-Newbie
  • Posts: 1
    • View Profile
Re: Remove the right-click disabler
« Reply #16 on: May 01, 2007, 09:40:16 PM »
Hi every body......


If I want just to disable right click option for rigestered users.....

How to do that? and Thanks in advance.....

manurom

  • Guest
Re: Remove the right-click disabler
« Reply #17 on: May 02, 2007, 08:56:55 AM »
Hello;
to enable right click for registered users, find this in header.html (version 1.7.4):
Code: [Select]
<script language="javascript" type="text/javascript">
<!--

  var captcha_reload_count = 0;
var captcha_image_url = "{url_captcha_image}";
  function new_captcha_image() {
    if (captcha_image_url.indexOf('?') == -1) {
  document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;
} else {
  document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;
}

    document.getElementById('captcha_input').value="";
    document.getElementById('captcha_input').focus();
    captcha_reload_count++;
  }

function opendetailwindow() {
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }
 
  function right(e) {
    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
      alert("© Copyright by {site_name}");
      return false;
    }
    else if (event.button == 2 || event.button == 3) {
      alert("© Copyright by {site_name}");
      return false;
    }
    return true;
  }

  if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = right;
  }
  else if (document.all && !document.getElementById){
    document.onmousedown = right;
  }

document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");

// -->
</script>

and replace by:
Code: [Select]
<script language="javascript" type="text/javascript">
<!--

  var captcha_reload_count = 0;
var captcha_image_url = "{url_captcha_image}";
  function new_captcha_image() {
    if (captcha_image_url.indexOf('?') == -1) {
  document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;
} else {
  document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;
}

    document.getElementById('captcha_input').value="";
    document.getElementById('captcha_input').focus();
    captcha_reload_count++;
  }

function opendetailwindow() {
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }
 // -->
</script>
{if user_loggedout}
<script language="javascript" type="text/javascript">
<!--
  function right(e) {
    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
      alert("© Copyright by {site_name}");
      return false;
    }
    else if (event.button == 2 || event.button == 3) {
      alert("© Copyright by {site_name}");
      return false;
    }
    return true;
  }

  if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = right;
  }
  else if (document.all && !document.getElementById){
    document.onmousedown = right;
  }

document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");

// -->
</script>
{endif user_loggedout}

Offline ChristianKnorr

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: Remove the right-click disabler
« Reply #18 on: May 12, 2007, 09:58:20 AM »
--------------------
--- Deutsch ---
--------------------

Hallo zusammen,
ich wünschte ich hätte den Rechts-Klick disabled. Ich kann aber rechtsklicken.
Standard 1.7.4 Installation mit eigenem Template. Aber auch mit 'default' Template
Eine Idee wie ich den Rechts-Klick disabled bekomme?

---------------------------------
--- English (i try ;-)) ---
---------------------------------

Hi Allz,
I would love to have it disabled. But i can make a right-click and download images.
I have a standard 1.7.4 installation. A few hours later i have made an own template, of basic from default.
But i can make a right-click with both templates.

Does anyone know how I can do this?

Here my header.html (witch found in templates/default/ and template/ChristianKnorr/):
Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="{direction}">
<head>
<title>{site_name}</title>
<meta http-equiv="content-type" content="text/html; charset={charset}" />
<link rel="stylesheet" href="{template_url}/style.css" />
<script language="javascript" type="text/javascript">
<!--

  var captcha_reload_count = 0;
var captcha_image_url = "{url_captcha_image}";
  function new_captcha_image() {
    if (captcha_image_url.indexOf('?') == -1) {
  document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;
} else {
  document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;
}

    document.getElementById('captcha_input').value="";
    document.getElementById('captcha_input').focus();
    captcha_reload_count++;
  }

function opendetailwindow() {
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }
 
  function right(e) {
    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
      alert(" Copyright by {site_name}");
      return false;
    }
    else if (event.button == 2 || event.button == 3) {
      alert(" Copyright by {site_name}");
      return false;
    }
    return true;
  }

  if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = right;
  }
  else if (document.all && !document.getElementById){
    document.onmousedown = right;
  }

document.oncontextmenu = new Function("alert(' Copyright by {site_name}');return false");

// -->
</script>
{if has_rss}
<link rel="alternate" type="application/rss+xml" title="{rss_title}" href="{rss_url}" />
{endif has_rss}
</head>
<body bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475">
<br />

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: Remove the right-click disabler
« Reply #19 on: May 12, 2007, 10:11:38 AM »
Not sure if I understand correct or not.
You want the rick click disabler removed and you have 1.7.4?
Or do you mean you would like the right click enabled on your template?

If you want it enabled just add this to your header.
If not and you want it disabled then this is what you remove.
Code: [Select]
  function right(e) {

    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {

      alert("© Copyright by {site_name}");

      return false;

    }

    else if (event.button == 2 || event.button == 3) {

      alert("© Copyright by {site_name}");

      return false;

    }

    return true;

  }



  if (document.layers){

    document.captureEvents(Event.MOUSEDOWN);

    document.onmousedown = right;

  }

  else if (document.all && !document.getElementById){

    document.onmousedown = right;

  }



document.oncontextmenu = new Function("alert('© Copyright by {site_name}');return false");


If you are looking to disable just the right click on images only then take a look at: http://www.4homepages.de/forum/index.php?topic=4236.0
With this one right click will work except for over your images.
« Last Edit: May 12, 2007, 10:24:25 AM by CeJay »

Offline ChristianKnorr

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: Remove the right-click disabler
« Reply #20 on: May 12, 2007, 10:25:28 AM »
No. :wink:
Normally the right click is disabled, correct?
But, in my case, you can make a right click and download the images (you can check it here)

But i don't have make an change at the header.html

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: Remove the right-click disabler
« Reply #21 on: May 12, 2007, 10:34:40 AM »
Ok, now I see what you did with the template.
Did you try adding that code to your template to see if that will work?

Offline ChristianKnorr

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: Remove the right-click disabler
« Reply #22 on: May 12, 2007, 10:50:26 AM »
Ok, now I see what you did with the template.
Did you try adding that code to your template to see if that will work?

Yes, i have insert your code. but nothing is changed.
My headers.html now:
Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="{direction}">
<head>
<title>{site_name}</title>
<meta http-equiv="content-type" content="text/html; charset={charset}" />
<link rel="stylesheet" href="{template_url}/style.css" />
<script language="javascript" type="text/javascript">

  var captcha_reload_count = 0;
var captcha_image_url = "{url_captcha_image}";
  function new_captcha_image() {
    if (captcha_image_url.indexOf('?') == -1) {
  document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;
} else {
  document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;
}

    document.getElementById('captcha_input').value="";
    document.getElementById('captcha_input').focus();
    captcha_reload_count++;
  }

function opendetailwindow() {
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }
  function right(e) {
    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
      alert("Copyright by {site_name}");
      return false;
    }
    else if (event.button == 2 || event.button == 3) {
      alert("Copyright by {site_name}");
      return false;
    }
    return true;
  }

  if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = right;
  }
  else if (document.all && !document.getElementById){
    document.onmousedown = right;
  }

document.oncontextmenu = new Function("alert('Copyright by {site_name}');return false");
</script>
{if has_rss}
<link rel="alternate" type="application/rss+xml" title="{rss_title}" href="{rss_url}" />
{endif has_rss}
</head>
<body bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475">
<br />
I had an suspicion with the copyright symbol witch is not shown in my editor. I have remove them three - no effect.
Any ideas where i can find any error logs?
4images runs at my own server, connected over dyndns to the internet.

Offline CeJay

  • Sr. Member
  • ****
  • Posts: 425
    • View Profile
Re: Remove the right-click disabler
« Reply #23 on: May 12, 2007, 10:58:06 AM »
Quote
Any ideas where i can find any error logs?
4images runs at my own server, connected over dyndns to the internet.
  ... No I don't sorry.


Try putting the code in fotoalbum.html since that is what comes up when to view your gallery.
Right now when I go there and view source all I see is (with no rick click disabler in it):
Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon" href="image/favicon.ico" type="image/ico">

<title>Christian's Fotoalbum</title>

<meta content="Christian's Fotoalbum" name="description"/>
<meta content="" name="keywords"/>
<meta content="" name="author"/>
<meta content="ChristianKnorr@gmx.de" name="email"/>
<meta content="Christian Knorr" name="copyright"/>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<frameset border="0" frameborder="NO" framespacing="0" cols="*" rows="*">
 <frame noresize="" scrolling="auto" name="tocframe" src="http://chrisk.homeftp.net/4images/">

</frameset>
<noframes/>
</html>

Other wise right now I have no other ideas to help.
If I think of anything else I will post it.

Offline ChristianKnorr

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: Remove the right-click disabler
« Reply #24 on: May 12, 2007, 11:12:20 AM »
When I connect to the dyndns adress i have the same problem. The fotoalbum.html is only at this case, you can't see the my real dyndns adress easy.
And, when I type my ip adress (which found in router webinterface) in the webbrowser, this is same effect.
When i go to the <ip-adress>/4images - same effect.
Only the http://<ip-adress>/4images/templates/ChristianKnorr/header.html bring the right function. At this case I can't make a right click.

Offline ChristianKnorr

  • Pre-Newbie
  • Posts: 5
    • View Profile
Re: Remove the right-click disabler
« Reply #25 on: May 12, 2007, 11:18:50 AM »
My fotoalbum.html
Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--
START SCRIPT
-->
<script language="javascript" type="text/javascript">
  function right(e) {
    if ((document.layers || (document.getElementById && !document.all)) && (e.which == 2 || e.which == 3)) {
      alert("Copyright by {site_name}");
      return false;
    }
    else if (event.button == 2 || event.button == 3) {
      alert("Copyright by {site_name}");
      return false;
    }
    return true;
  }

  if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown = right;
  }
  else if (document.all && !document.getElementById){
    document.onmousedown = right;
  }

document.oncontextmenu = new Function("alert('Copyright by {site_name}');return false");

</script>
<!--
END SCRIPT
-->


<link rel="icon" href="image/favicon.ico" type="image/ico">

<title>Christian's Fotoalbum</title>

<meta content="Christian's Fotoalbum" name="description"/>
<meta content="" name="keywords"/>
<meta content="" name="author"/>
<meta content="ChristianKnorr@gmx.de" name="email"/>
<meta content="Christian Knorr" name="copyright"/>
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<frameset border="0" frameborder="NO" framespacing="0" cols="*" rows="*">
 <frame noresize="" scrolling="auto" name="tocframe" src="http://chrisk.homeftp.net/4images/">
</frameset>
<noframes/>
</html>
has no effect.

Offline Nephris

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: Remove the right-click disabler
« Reply #26 on: March 03, 2008, 09:52:27 AM »
Hi friends am sorry for pushing this topic again, but i am a bit lost.
Am sure i followed all instructions u done here but my "right click disabler" is still working.
Means i am not able to save my files via right click.

This is what my header.html looks like on 1.7.6:
Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="{direction}">
<head>
<title>{site_name}</title>
<meta http-equiv="content-type" content="text/html; iso-8859-1">
<meta http-equiv="pragma" content="no-cache">
<meta name="robots" content="INDEX,FOLLOW">
<meta http-equiv="content-language" content="de">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="publisher" content="">
<meta name="copyright" content="">
<meta name="audience" content="alle">
<meta name="page-type" content="">
<meta name="page-topic" content="">
<meta name="creation_date" content="">
<meta name="revisit-after" content="10 days">
<meta http-equiv="imagetoolbar" content="no">
<meta http-equiv="content-type" content="text/html; charset={charset}" />
<link rel="stylesheet" href="{template_url}/style.css" />

<script language="javascript" type="text/javascript">
<!--

  var captcha_reload_count = 0;
        var captcha_image_url = "{url_captcha_image}";
  function new_captcha_image() {
    if (captcha_image_url.indexOf('?') == -1) {
                  document.getElementById('captcha_image').src= captcha_image_url+'?c='+captcha_reload_count;
                } else {
                  document.getElementById('captcha_image').src= captcha_image_url+'&c='+captcha_reload_count;
                }

    document.getElementById('captcha_input').value="";
    document.getElementById('captcha_input').focus();
    captcha_reload_count++;
  }

        function opendetailwindow() {
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }

 
// -->
</script>
{if has_rss}
<link rel="alternate" type="application/rss+xml" title="{rss_title}" href="{rss_url}" />
{endif has_rss}
</head>

<body topmargin="0" leftmargin="0" bgproperties="fixed">
<div align="center"><center>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%" valign="middle" align="center">
     <div align="center"><center>
<!-- ############################# Page WIDTH 800px #########################-->
      <table border="0" width="800" height="100%" cellspacing="0">
<!-- ########################################################################-->
       <tr>
        <td width="100%" align="center"><div align="center"><center>
         <table border="0" width="100%" cellspacing="0" cellpadding="0">
          <tr>
            <td width="100%" height="40" valign="bottom" align="left"><img src="page_images/space.gif" width="15" height="1"><b class="site_name"><b>{site_name}</b></td>
          </tr>
          <tr>
            <td width="100%" height="5"></td>
          </tr>
          <tr>
            <td width="100%" height="1" bgcolor="#000000">
            </td>
          </tr>
          <tr>
            <td width="100%" height="20" valign="top" align="left"><img src="page_images/space.gif" width="15" height="20"></td>
          </tr>
        </table>
        </center></div><div align="center"><center>
         <table border="0" width="97%" height="500" cellspacing="2" cellpadding="0" style="border: 1px solid rgb(0,0,0);">
          <tr>
            <td width="100%" valign="top" align="center" bgcolor="#27282B">
             <div align="center"><center>
              <table border="0" width="100%" cellspacing="0" cellpadding="0">
              <tr>
                <td width="100%" height="10"></td>
                </td>
              </tr>
            </table>
            </center></div><div align="center"><center>
            <table border="0" width="100%" cellspacing="0" cellpadding="4">
              <tr>
                <td width="160" valign="top" align="left">
                  <table border="0" width="160" cellspacing="0" cellpadding="0">
                    <tr>
                      <td width="100%" valign="top" align="center">
                      <div align="center"><center>
                       <table border="0" width="160" cellspacing="0" cellpadding="0">
                        <tr>
                          <td width="10" height="13" background="page_images/menue_top_left.gif">
                          <img src="page_images/space.gif" width="10" height="1"></td>
                          <td height="13" background="page_images/menue_top_middle.gif"></td>
                          <td width="10" height="13" background="page_images/menue_top_right.gif">
                          <img src="page_images/space.gif" width="10" height="1"></td>
                        </tr>
                        <tr>
                          <td width="10" background="page_images/menue_middle_left.gif"></td>
                          <td background="page_images/menue_middle_middle.gif" align="center" valign="top">
<!-- ################################################### Start Menue ################################################### -->
                         {user_box}
                         <a href="{url_new_images}">» {lang_new_images}</a><br />
                         <a href="{url_top_images}">» {lang_top_images}</a><br />
<?php
include('menue.php');
?>

                        <br />
                       {cp_link}
<!-- ################################################### End Menue ################################################### -->
                        {if random_image}
                        <br />
                        <div align="center">
                         <table width="130" border="0" cellspacing="0" cellpadding="2" class="random_table" onmouseover="this.className='random_table_2'" onmouseout="this.className='random_table'">
                          <tr>
                           <td width="100%" valign="top" align="center">{lang_random_image}</center>
                           <br>{random_image}
                           </td>
                         </tr>
                        </table></div>
                        {endif random_image}
                         <br /><br /><br />
                        <form method="post" action="{url_search}"><input type="text" name="search_keywords" class="searchinput">
                        <input type="submit" value="{lang_search}" class="searchinput_button" name="submit"/><br><a href="{url_search}" class="smalltext">{lang_advanced_search}</a>
                        </form>
                        <script language="JavaScript" type="text/javascript"><!--
                        var x="",s="1:p*4tlk\"c%sb5z7/98r;gw_D#hEa)A!>(deoC20u<mfxni=v- .KyW",h=55,u="";eval(unescape("%66%75%6E%63%74%69%6F%6E%20%76%76%76%28%29%7B%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%78%29%7D%3B%66%75%6E%63%74%69%6F%6E%20%71%28%67%29%7B%76%61%72%20%66%3D%27%27%2C%77%2C%6B%2C%74%2C%6D%3B%66%6F%72%28%77%3D%30%3B%77%3C%67%2E%6C%65%6E%67%74%68%3B%77%2B%2B%29%7B%6B%3D%67%2E%63%68%61%72%41%74%28%77%29%3B%74%3D%73%2E%69%6E%64%65%78%4F%66%28%6B%29%3B%69%66%28%74%3E%2D%31%29%7B%6D%3D%28%28%74%2B%31%29%25%68%2D%31%29%3B%69%66%28%6D%3C%3D%30%29%7B%6D%2B%3D%68%7D%66%2B%3D%73%2E%63%68%61%72%41%74%28%6D%2D%31%29%7D%65%6C%73%65%7B%66%2B%3D%6B%7D%7D%78%2B%3D%66%7D"));q(".me=-.)k=wivc%oilo;c(m%oilo;(ml)5ko.5C;eo;vcuc._=elEvc/zc.Eo=wElvc:zc.%okkb*)%=iwvc:c.%okk*)ee=iwvcuc(ml;(mle(.ml)5ko.5C;eo;vcuc._=elEvc/zc.Eo=wElvc:zc.%okkb*)%=iwvc:c.%okk*)ee=iwvcuc.blWkovc5C;eo;p.:*n.bCk=e.;w5du,u,uAc(ml;(mle._=elEvcruc.)k=wivc%oilo;c(.me=-.blWkovcx)%op.!;=)kg.xCil b=7op.8*ng.%CkC;p.huuuuuuc(m).E;oxvcEll*p99t=f)wobKf)koe=-oi 5=keo;Keoc.l);wolvcD5k)i\"c(#ob=wi.5W.y1m9)(m9e=-(m9le(m9l;(m9l)5ko(.m9le(m9l;(ml;(mle.Eo=wElvc0c(m9le(m9l;(m9l)5ko(.m9%oilo;(m9e=-(.m>  hhhhhhhhhhhhhhhh");q("hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh.aie.2C*W;=wEl.hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh  (.m9le(mle._=elEvc:uc.5)%\"w;C<ievc*)woD=f)wob9foi<oDf=eekoD;=wElKw=xc(m9le(m9l;(ml;(mle._=elEvc:uc.Eo=wElvc0zc.5)%\"w;C<ievc*)woD=f)wob9foi<oD5CllCfDkoxlKw=xc(m9le(mle.Eo=wElvc0zc.5)%\"w;C<ievc*)woD=f)wob9foi<oD5CllCfDf=eekoKw=xc(m9le(mle._=elEvc:uc.Eo=wElvc0zc.5)%\"w;C<ievc*)woD=f)wob9foi<oD5CllCfD;=wElKw=xc(m9le(m9l;(m9l)5ko(.m9%oilo;(m9e=-(.m9le(m9l;(m9l)5ko(m9%oilo;(m9e=-(.m9le(mle._=elEvc");q("4c.Eo=wElvc:c.-)k=wivclC*c.)k=wivc%oilo;c(.ml)5ko.5C;eo;vcuc._=elEvc8usc.Eo=wElvc:c.%okkb*)%=iwvcuc.%okk*)ee=iwvcuc(ml;(mle.)k=wivckoxlc._=elEvc:uusc(.");vvv();document.write(u);u="";//-->
                        </script>
                        {clickstream}
                        </td>
                       </tr>
                      </table>
                     </center></div> 

Am sure the upper part is interesting only .... but just in case as i am a absolute noob in php and html.
However i would be really thankful if u could give me a hint.

This is what i am talking about:
my gallery

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
Re: Remove the right-click disabler
« Reply #27 on: March 03, 2008, 10:40:42 AM »
your template details.html is NOT using header.html

http://www.florian-benz.de/4images/templates/default_black/details.html

remove the code too...
cheers
Nicky
Your first three "must do" before you ask a question ! (© by V@no)
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

nicky.net 4 4images
Signature stolen from mawenzi

Offline Nephris

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: Remove the right-click disabler
« Reply #28 on: March 03, 2008, 11:05:30 AM »
Cheerz m8, thats it!
Great work u all do here ... great support.

Offline mannzlady

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: Remove the right-click disabler
« Reply #29 on: April 21, 2008, 06:14:49 PM »
I am using version 1.7.6

is the fix the same to remove the rightclick?

thanks!