Quote Originally Posted by simon1066 View Post
I had thought something like this, in \includes\functions\extra_functions\functions_bmz_image_handler.php to use the MEDIUM_IMAGE_BACKGROUND colour for small images on product_info pages

Code:
global $current_page_base;
if ($current_page_base == ('product_info')) {
$ihConf['small']['bg']          = defined('MEDIUM_IMAGE_BACKGROUND') ? MEDIUM_IMAGE_BACKGROUND : $ihConf['default']['bg'];
} else {
$ihConf['small']['bg']          = defined('SMALL_IMAGE_BACKGROUND') ? SMALL_IMAGE_BACKGROUND : $ihConf['default']['bg'];
}
but no.
Actually, there's no way that would have worked.