OK. I've gone through this multiple times... Here is what I've got. Again, I just want the main website logo to change when going to specific categories.
/custom_template/css/stylesheet_smartbg.php:
Code:
#logo {background-image: url(../images/smartbg.gif);}
.smartBG_1 #logo {background-image: url(../images/smartbg_1.gif);}
.smartBG_4 #logo {background-image: url(../images/smartbg_4.gif);}
.smartBG_44 #logo {background-image: url(../images/smartbg_44.gif);}
.smartBG_103 #logo {background-image: url(../images/smartbg_103.gif);}
.smartBG_84 #logo {background-image: url(../images/smartbg_84.gif);}
.smartBG_36 #logo {background-image: url(../images/smartbg_36.gif);}
/includes/languages/english/custom_template/header.php (specified the width and height of each of the smartbg_ images):
Code:
define('HEADER_LOGO_WIDTH', '955');
define('HEADER_LOGO_HEIGHT', '90');
define('HEADER_LOGO_IMAGE', 'pixel_trans.gif');
/includes/templates/custom_template/common/tpl_main_page.php:
Code:
<body id="<?php echo $body_id . 'Body'; ?>" class="smartBG<?php echo smart_backgrounds();?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
The test images (smartbg_xx) have all been uploaded to /custom_template/images/
The problem:
There is no main website logo on homepage and there are no logos appearing when entering the specific categories.
What have I missed?