https://www.zen-cart.com/tutorials/i...hp?article=124
I tried to set up my logo like this tutorial explains and Didnt get anywhere?
Can someone explain it better for me?
Thanks, Mike...
https://www.zen-cart.com/tutorials/i...hp?article=124
I tried to set up my logo like this tutorial explains and Didnt get anywhere?
Can someone explain it better for me?
Thanks, Mike...
That's about as simply as it can be explained.
What exactly do you mean by 'didn't get anywhere'?
The tutorial assumes that you've created a custom template.
https://www.zen-cart.com/tutorials/i...hp?article=142
https://www.zen-cart.com/tutorials/i...hp?article=230
I already have a CUSTOM template. I filled out that info(#logowrapper) in the style sheet and never seen my logo? If the logo is a gif does the 6 digit color code need to be something special?
look at my site
m i k e s h o g d o g s u p p l y . c o m
See where the top is black where would i go to upload my big banner there?
AND WHEN i REMOVE LOGO.GIF THE ZEN CART IMAGE it leaves a little box ther with a red x in it?
Thanks...
#logowrapper is defining the background image to be displayed behind the logo, not the logo itself. If you have merged the two, that's ok, but you have to "tell" Zen Cart you've done so. You can do it by adding this to your stylesheet.
Change
toCode:#logo { text-align: center; }
Code:#logo { display:none; }
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
#logoWrapper {
width: 100%;
height: 150px;
background-color: #000000;
background-image: url(../images/150px.gif);
background-repeat: no-repeat;
display:none;
}
Thats what i have on the style sheet and nothings showing up now...
that 150pix.gif is what i want to display...
Where is the logo sitting? (PATH...?)
What is being defined as the logo in includes/languages/english/header.php ? (or your overide if there is one...)
Did you FTP the logo to the server as a binary file?
- - - - - - - - - - - - -
Load up the page in your browser and look at the HTML source. This will give you clues...
20 years a Zencart User
this is my header.php in my CUSTOM folder....
<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: header.php 2940 2006-02-02 04:29:05Z drbyte $
*/
// header text in includes/header.php
define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
define('HEADER_TITLE_CHECKOUT', 'Checkout');
define('HEADER_TITLE_TOP', 'Top');
define('HEADER_TITLE_CATALOG', 'Home');
define('HEADER_TITLE_LOGOFF', 'Log Out');
define('HEADER_TITLE_LOGIN', 'Log In');
// added defines for header alt and text
define('HEADER_ALT_TEXT', '');
define('HEADER_SALES_TEXT', '');
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '75px');
define('HEADER_LOGO_IMAGE', 'logo.gif');
// header Search Button/Box Search Button
define('HEADER_SEARCH_BUTTON','Search');
define('HEADER_SEARCH_DEFAULT_TEXT', 'Enter search keywords here');
?>
Do I change that in filezilla...
Set the transfer type in Filezilla to auto.
Open Filezilla
Click on Transfer
Position your cursor on Transfer Type
Click on auto from the drop down
After that, everytime you transfer something, Filezilla will check the file type and use the appropriate transfer type.
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey