Hover size is controlled here:
Product Info - Image Width
Product Info - Image Height
However, these same settings control the size of the image on product info pages, which is known as the 'medium' image. So, to control hover that does not also make your medium image huge, you would have to do something like change the hover code to display the large image before looking for a medium image, as follows:
In your file:
includes/classes/bmz_image_handler.class.php
Find the following (about line 697)
PHP Code:
$zoom_sizetype = ($this->sizetype=='small')?'medium':'large';
and replace it with:
PHP Code:
$zoom_sizetype = ($this->sizetype=='small')?'large':'medium';
Bookmarks