
Originally Posted by
e81ny
Hmmm... that would mean that there is a missing </div> in my header.php as well?
Ack! NO, that does not mean you have a missing div. The same issue can have more than one cause.
The way I have includes/languages/english/apple_zen/header.php is the way it is supposed to be. There only needs to be a space between the " ' " for HEADER_LOGO_WIDTH, and HEADER_LOGO_HEIGHT. HEADER_ALT_TEXT and HEADER_SALES_TEXT do NOT have to be blank. You can add back your alt text, and if you want to have text to the right of your logo, you can add sales_text. Of course if you have a wide logo, you should have the sales text blank. Here is the original header.php language file:
Code:
// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
define('HEADER_SALES_TEXT', 'To change any of the site colors, open up includes/templates/apple_zen/css/stylesheet.css. To overwrite your own logo, upload your logo.gif to includes/templates/apple_zen/images/');
define('HEADER_LOGO_WIDTH', ' ');
define('HEADER_LOGO_HEIGHT', ' ');
define('HEADER_LOGO_IMAGE', 'logo.gif');
If the space are removed for logo_width and logo_height, then your logo will expand to its "real" dimensions (because then zen cart specifies its height and width-- putting the space stops zen cart from adding the height and width). SO, IF you happen to have a tall logo, then sure, you wouldn't see that striped background, because your logo would be on top of it obscuring it. However bradymc's issue WAS caused by a missing div. Yours was not.
Phew. Hope that is clear now.
Thanks for the compliment on the template, by the way.
Bookmarks