Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Text Color in New/Featured Products section

Text Color in New/Featured Products section

Locked

Views: 1,877

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
26 Jun 2006, 1:56 PM
#1
teamtj avatar

teamtj

New Zenner

Join Date:
Sep 2004
Posts:
72
Plugin Contributions:
0

Text Color in New/Featured Products section

I am trying to get the "New Products" and "Featured Products" text a different color than the black it is now on my site, http://www.dicapofoods.com/zc1302

I can change it here:```
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 62.5%;
color: #000000;
background-color: #ffffff;
}


But that changes a lot of other stuff, too.

Any pointers?
26 Jun 2006, 2:01 PM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Text Color in New/Featured Products section

You're heading in the right direction, but need to target the change more precisely. Try > #whatsNew, #whatsNew a, #featuredProducts , #featuredProducts a {color:gray}

26 Jun 2006, 3:02 PM
#3
teamtj avatar

teamtj

New Zenner

Join Date:
Sep 2004
Posts:
72
Plugin Contributions:
0

Re: Text Color in New/Featured Products section

Looks like I need to learn moce .css!

Thanks for the help!

26 Jun 2006, 6:52 PM
#4
teamtj avatar

teamtj

New Zenner

Join Date:
Sep 2004
Posts:
72
Plugin Contributions:
0

Re: Text Color in New/Featured Products section

I put```
#whatsNew a, #whatsNew a:visited, #featuredProducts a, #featuredProducts a:visited, {color:#000000}

#whatsNew,#featuredProducts {color:#ffffff}


How do I get them back to black?
26 Jun 2006, 7:03 PM
#5
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: Text Color in New/Featured Products section

OK.Slightly confused as to what you want to do. The thread title said that you wanted to change the text color in these sections, but now I'm suspecting that it's only the section headings that you want to change. If so take out > #whatsNew,#featuredProducts {color:#ffffff}which is turning your text white and replace with > h2.centerBoxHeading {color:white}to hit the headings only.

26 Jun 2006, 7:11 PM
#6
teamtj avatar

teamtj

New Zenner

Join Date:
Sep 2004
Posts:
72
Plugin Contributions:
0

Re: Text Color in New/Featured Products section

Thank you for seeing through my inability to explain my problem.

This totally fixed my problem on this issue.