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

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

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.