I don't know about wally's problem but the original problem in this thread can be solved by changing the initialization from:
Code:
</script>
<script type="text/javascript">
jQuery(document).ready(function($){ //fire on DOM ready
$('.zoom').addpowerzoom({
powerrange: [2,2],
magnifiersize: [160, 160]} //Set size of magnifier to 160px by 160px
)
})
</script>
to:
Code:
<script type="text/javascript">
jQuery(document).ready(function($){ //fire on DOM ready
$('.zoom').each(function(){
$(this).addpowerzoom({
powerrange: [2,2],
magnifiersize: [160, 160]}); //Set size of magnifier to 160px by 160px
});
});
</script>
@wally, as far as I know, the script wasn't designed for that. Probably needs a fair amount of rewrite to accommodate changing the images around.
Please don't respond in this thread. I'll have a look at your thread and post something there if I get anything.
Bookmarks