Hello,
The problem is caused by your hosting settings.
Image is loaded from the path that is defined in “DOCUMENT_ROOT” variable. On a server where your site is located the path for DOCUMENT_ROOT is written:
_SERVER["DOCUMENT_ROOT"] /var/chroot/home/content/53/10559053/html
but your site is located in /var/chroot/home/content/53/10559053/html/provideobackgrounds and this path is written for variable “REAL_DOCUMENT_ROOT”.
So to fix the issue I’ve changed the code $file_path = $_SERVER['DOCUMENT_ROOT'] . $file_path['path']; to $file_path = $_SERVER['REAL_DOCUMENT_ROOT'] . $file_path['path']; on line 118 in the file wp-content/themes/legenda/framework/images.php.
Please clear browser cache and check hover image now.
Regards,
Eva Kemp.