Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How to change EZpage color?

How to change EZpage color?

Locked

Views: 821

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
19 Jan 2010, 21:06
#1
cdhi2002 avatar

cdhi2002

New Zenner

Join Date:
Nov 2009
Posts:
16
Plugin Contributions:
0

How to change EZpage color?

Dear All,

I'm trying to change my own created EZpage's font color only. (http://heidimart.com). I want to change the color of "important links" and/or "becoming Heidi's Business parter" only, not affect other sidebox's font color. I tried to modify "#navEZPagesTOC ul li a:hover", but all the other sidebox font color was changed. It looks like this is not right. I tried many other ways and did a lot of research. However, I couldn't find any solution.

Is there anyone know how to do it?

Thank you.

19 Jan 2010, 21:27
#2
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: How to change EZpage color?

to target only those items , add the following to end of your stylesheet.css

#ezpagesHeading {
color:red;
}
this will change the color or Important Links .

to change color of the content add this .

#ezpagesContent a {
color:red;
}

you can repeat this code to add additional color for hover , active , etc .. by change a to hover ....

hope this helps.

19 Jan 2010, 21:34
#3
cdhi2002 avatar

cdhi2002

New Zenner

Join Date:
Nov 2009
Posts:
16
Plugin Contributions:
0

Re: How to change EZpage color?

Dear Tony,

It works! That's a big help for me.

Thank you very much.