my problem is that when i set my global background to a image or a color it doesent change it there is some sort of conflict with the file no_image.png and if i remove the no_image.png then there is a code error in the heading
This is the error in the heading:

this is the lines its reffering to in the .php file
Code: Select all
public static function resizeImage($tool, $image, $width = '', $height = '', $resize_type = '') {
if (is_array($image)) {
$image = self::getProperty($image, 'image', 'no_image.jpg');
}
if (!$image || !file_exists(DIR_IMAGE . $image) || !is_file(DIR_IMAGE . $image)) {
$image = Front::$IS_OC2 ? 'no_image.png' : 'no_image.jpg';
}
list($width_orig, $height_orig) = getimagesize(DIR_IMAGE . $image);
if (!is_numeric($width)) {
$width = $width_orig;
Any help on this would be greatly appreciated
Kind Regards
Skawty