Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Tagline and banner on header won't come off

Tagline and banner on header won't come off

Locked

Views: 2,082

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
3 Nov 2006, 7:35 PM
#1
eshep005 avatar

eshep005

New Zenner

Join Date:
Nov 2006
Posts:
3
Plugin Contributions:
0

Tagline and banner on header won't come off

Hey,
I just upload zen cart today and have made a banner so far for my layout but I can't seem to figure out how to remove the tagline and the zencart banner from my header area.

There is a tagline section in my css stylesheet for this theme but it only controls what the text looks like - I want to take the tagline off. I don't see anywhere in the admin area where I can do that.

Also, I have unactivated all the banners under the admin section and have no banner "boxes" on in my layout boxes area under the tools section but I keep having this zen cart banner appear on my header. I think its on a specific html or php file within the software's folder but I'm not sure where to look.

Please help!!!! :cry:

This is what it looks like:
http://www.e-shep.com/store

Thank you,
Emily
[email protected]

3 Nov 2006, 7:53 PM
#2
eshep005 avatar

eshep005

New Zenner

Join Date:
Nov 2006
Posts:
3
Plugin Contributions:
0

Re: Tagline and banner on header won't come off

Okay, I've deleted the tagline by deleting the message in header.php in my /includes/languages/english/ folder. There is also a place in that file to specify a "header logo image" like below:

// added defines for header alt and text
define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
define('HEADER_SALES_TEXT', '');
define('HEADER_LOGO_WIDTH', '192px');
define('HEADER_LOGO_HEIGHT', '64px');
** define('HEADER_LOGO_IMAGE', 'logo.gif');**

I tried to delete that bolded line to take out the logo image but it just displayed an empty image box on the header. I want to totally take this out. How do I do this?

3 Nov 2006, 7:57 PM
#3
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Tagline and banner on header won't come off

Removing the tagline:

You have two options here:

  1. Removing the tagline Check here in the Tutorials.

  2. in you stylesheet.css find the tagline declaration:

#tagline {
	color:#000000;
	font-size: 2em;
	text-align : center;
	vertical-align: middle;
	}

and change it as follows:

#tagline {
display: none
	}

The Zen Cart logo:
again you have two choices:

  1. changing the logo image check here in the tutorials

  2. removing the logo check here in the tutorials

3 Nov 2006, 8:02 PM
#4
eshep005 avatar

eshep005

New Zenner

Join Date:
Nov 2006
Posts:
3
Plugin Contributions:
0

Re: Tagline and banner on header won't come off

Thank you!

It worked! I will definately have to bookmore those tutorials! Thanks again, I really appreciate it!

Emily