Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / where do I change this?

where do I change this?

Locked

Views: 1,009

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
15 Jun 2009, 8:11 AM
#1
angelstubes avatar

angelstubes

New Zenner

Join Date:
May 2009
Posts:
53
Plugin Contributions:
0

where do I change this?

Hello
I have looked and looked but cant seem to find where I change the font for this page (mainly I want to change the colour of the font from black to white where it says Free shipping and leave a comment on product or ask a question
I have inclosed a pic so you see what i mean
Any help would be great
Angel

http://i43.tinypic.com/1y60zt.jpg
15 Jun 2009, 8:40 AM
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: where do I change this?

An,
You will edit your stylesheet.css

Add this element to the sheet if not found

.checkboxLabel {
color:#000000;
}

15 Jun 2009, 8:46 AM
#3
angelstubes avatar

angelstubes

New Zenner

Join Date:
May 2009
Posts:
53
Plugin Contributions:
0

Re: where do I change this?

ok thanks
Where would i add this in the stylesheet please?

.checkboxLabel {
color:#000000;
}

15 Jun 2009, 11:10 PM
#4
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,180
Plugin Contributions:
0

Re: where do I change this?

An,
At the bottom

16 Jun 2009, 12:32 AM
#5
lissae avatar

lissae

Totally Zenned

Join Date:
Oct 2007
Location:
Australia
Posts:
814
Plugin Contributions:
0

Re: where do I change this?

If it's the black text part you want to change, you'll find that in the stylesheet under LEGEND

LEGEND {
font-weight: bold;
color: #000000;
padding: 0.3em;
}

Change the #000000 to your desired color :)

23 Jun 2009, 12:12 PM
#6
orchard_direct avatar

orchard_direct

Zen Follower

Join Date:
Aug 2007
Location:
Brighton, UK
Posts:
204
Plugin Contributions:
0

Re: where do I change this?

For future reference, a quick way to find the div you need to change. highlight the section of a html page you wish to change and view the source code. find the correct div id that you wish to change then add corrections to the bottom of your style sheet.

e.g #yourdiv { };

Good luck!