form elements not selectable with mozilla* form elements not selectable with mozilla*
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

form elements not selectable with mozilla*

Started by mrshark, August 21, 2004, 08:09:35 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

mrshark

after upgrading to cpg 1.3.1 from 1.3.0, now on my site http://www.slide-show.net/galleria is not possible to access textual form elements with mozilla. If someone uploads images, when he has to insert titles and descriptions soon after, form elements are non selectable, my mouse click and by the tab key (it simply passes on, as they are not there!), too. This is true for mozilla firefox and mozilla navigator, latest versions for both. IE works... Any help? if it can help, i can create e temporary account on my site, to test it...

Nibbler

You have javascript in your theme blocking the mouse clicks
<SCRIPT LANGUAGE="JavaScript" type="text/javascript" >
<!--
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else {
document.onmousedown = function(){return false}
}
//-->
</SCRIPT>


Remove that and you'll be fine.