I've carefully read all the tutorials on overrides, and wanted, of course, to change the logo in the main header. I had it working, then I tried to change it to use a different logo image, but the change isn't working. Here's the issue:
I'd like to use a very large logo, 982 x 82 pixels, which contains the text we want to display as our store title. I'd like this centered, and I'd like NOT to have the HEADER_SALES_TEXT variable show.
Our custom header.php contains this code:
// added defines for header alt and text
// modified to use LifeRing store logo.jpg
define('HEADER_ALT_TEXT', 'The LifeRing Online Store');
define('HEADER_SALES_TEXT', 'The LifeRing Online Store');
define('HEADER_LOGO_WIDTH', '982px');
define('HEADER_LOGO_HEIGHT', '82px');
define('HEADER_LOGO_IMAGE', 'store_logo.jpg');
Since I don't want HEADER_SALES_TEXT I removed the line; but then ZC displays "HEADER_SALES_TEXT"; not a good option. How do I make it go away?
As instructed in "How do I change "Powered by Zen Cart" and add/position a new logo?", I placed the store_logo.jpg in the /ZenCart/includes/templates/LifeRing/images directory; but the site isn't finding it. Also, we formerly had much bolder text for "The LifeRing Online Store" - what did I do wrong there?
You can check the site at http://67.199.28.10/ZenCart/ and see (we're building a replacement for a currently working eCommerce site and are working from the IP address until we're ready to swing the DNS).
Possible issue: we want the site fixed width, and I've changed the mailWrapper to a fixed width of 900 pixels; is that a problem if the logo is 982 pixels wide?



