Zen Cart Logo

Powered by Zen-Cart

Locked

Views: 1,938

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
6 Feb 2007, 5:31 PM
#1
shtocoh avatar

shtocoh

New Zenner

Join Date:
Feb 2007
Posts:
13
Plugin Contributions:
0

Powered by Zen-Cart

Ok sorry for the stupid question but I am very new at this. Some home I ended up killing the powerd by zen-cart at the bottom of the page and I wanted to fix it and put it back but for the life of me I can not remember what file it was located in. Can someone tell me where I need to go so I can fix it.

Thanks

6 Feb 2007, 5:37 PM
#2
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Powered by Zen-Cart

includes/languages/YOUR_TEMPLATE/english.php

If you've done the overrides correctly, you can just copy the line from includes/languages/english.php

6 Feb 2007, 5:50 PM
#3
shtocoh avatar

shtocoh

New Zenner

Join Date:
Feb 2007
Posts:
13
Plugin Contributions:
0

Re: Powered by Zen-Cart

Ahh great found it thanks for the help

6 Feb 2007, 6:23 PM
#4
shtocoh avatar

shtocoh

New Zenner

Join Date:
Feb 2007
Posts:
13
Plugin Contributions:
0

Re: Powered by Zen-Cart

One more question now I have it changed back but I need to fix the color and the bg color but I do not see that in the stylesheet is it located some place else?

6 Feb 2007, 8:43 PM
#5
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Powered by Zen-Cart

The bg color is controlled by

#mainWrapper {
	background-color: #ffffff;
	text-align: left;
	width: 100%;
	vertical-align: top;
	}

which controls a big chunk of the page.

The link colors are controlled by

a:link, #navEZPagesTOC ul li a {
	color: #3300FF;
	text-decoration: none;
	}
 
a:visited {
	color: #3300FF;
	text-decoration: none;
	}

a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
	color: #FF0000;
	}

a:active {
	color: #0000FF;
	}

If there's a way to separate the "footer" out from those, I don't know what it is. :(

8 Feb 2007, 2:16 AM
#6
shtocoh avatar

shtocoh

New Zenner

Join Date:
Feb 2007
Posts:
13
Plugin Contributions:
0

Re: Powered by Zen-Cart

ahh gotch thanks :laugh:

Oh yeah I just tried it and it makes the whole page that color blah there has to be a way to change just the little bottom strip not the whole page. Anymore ideas? Oh here is the link also if you want to see what I mean the little white strip at the bottom of the page.

http://primallighting.fatcow.com/

8 Feb 2007, 4:12 AM
#7
barco57 avatar

barco57

Totally Zenned

Join Date:
Apr 2006
Location:
West Salem, IL
Posts:
2,841
Plugin Contributions:
0

Re: Powered by Zen-Cart

This will let you adjust the text color and background color

#siteinfoLegal {
color: #WHATEVER YOU WANT;
background-color: #WHATEVER YOU WANT;
}

The following will change the color of the zencart link

#siteinfoLegal  a{
color: #WHATEVER YOU WANT;
}

If you want to change the hover behavor of the link, like an underline on hover

#siteinfoLegal  a:hover{
text-decoration: underline;
}
8 Feb 2007, 4:30 AM
#8
afo avatar

afo

Totally Zenned

Join Date:
Aug 2004
Location:
New York City
Posts:
6,800
Plugin Contributions:
0

Re: Powered by Zen-Cart

Mike is correct. :yes: That'll do what you want.

Love the sig, Mike.

8 Feb 2007, 4:15 PM
#9
shtocoh avatar

shtocoh

New Zenner

Join Date:
Feb 2007
Posts:
13
Plugin Contributions:
0

Re: Powered by Zen-Cart

Ahh great that did it thanks to both of you for the help.