Hi Adrian,
Yes, that would be the script.
Ahh yes, it would help to have that file uploaded. Duh! Plus I did catch one other mistake. Thanks, I guess I just needed to stop looking at it for awhile.
It seems to be working but now I need to adjust the zoom image over to the left. I think this is the correct part of code from the .js file that needs to be tweaked.
Code:
init: function($, $img, options){
var setting=$.extend({}, this.dsetting, options), w = $img.width(), h = $img.height(), o = $img.offset(),
fiz = this, $tracker, $cursorshade, $statusdiv, $magnifier, lastpage = {pageX: 0, pageY: 0};
setting.largeimage = setting.largeimage || $img.get(0).src;
$magnifier=$('<div class="magnifyarea" style="position:absolute;width:'+setting.magnifiersize[0]+'px;height:'+setting.magnifiersize[1]+'px;left:-10000px;top:-10000px;visibility:hidden;overflow:hidden;border:1px solid black;" />')
.append('<div style="position:relative;left:0;top:0;" />')
.appendTo(document.body) //create magnifier container
//following lines - create featured image zoomer divs, and absolutely positioned them for placement over the thumbnail and each other:
I tried changing the left:-10000px; but nothing... for some reason I can not wrap my brain around this whole positioning code??
Thanks so much for the help.
Bookmarks