Thanks so much Merlin, and guess what? I found this other change and applied it before reading your suggestion:
Re: Image Handler 2 Support
--------------------------------------------------------------------------------
Hi
I may have found a fix for the bad behaviour of ie6 by pushing the zoom image too high nearly off the page, when clicking on images at the bottom end of a lot of picture product listings.
Its a simple mod to the ih2 jscript file...
http://forums.breakmyzencart.com/t10...om-images.html
I remember the odd post here a while back, similarly complaining the zoom window goes too high sometimes
##############################___
1.3.7 at last... on my hareslade site
http://www.hareslade.com/zc/index.php
Here is another link to it:
http://forums.breakmyzencart.com/t10...om-images.html
And to make triple sure that this fix, plus the one Merlin just put up is captured in one spot, here is the actual fix I applied:
Code:
/* event.clientY is not valid in firefox netscape or opera, but ie has to use it */
var ie_offset = -20;
if ( docheight - event.clientY < zoomimg_h + (2 * padding) ){
//ycoord += event.clientY - Math.max(0,(0 + zoomimg_h + (5 * padding) - (docheight + truebody().scrollTop -event.clientY) ) );
ycoord += ie_offset + truebody().scrollTop + event.clientY - Math.max(0,(0 + zoomimg_h + (2 * padding) - (docheight - event.clientY) ) );
} else {
ycoord += ie_offset + truebody().scrollTop + event.clientY;
So, I am going to try the one that Merlin posted for me as well, but this the problem is officially fixed for me.
Thanks for all the help everyone, and especially to Merlin and Hareslade.
Oh, and off topic: I am soooo glad I switched my server from Powweb to
Camelot The speed blows away the glacial site that I had before, and the service is excellent.
Todd