Zen Cart Logo
Forums / General Questions / Main page colours

Main page colours

Locked

Views: 854

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
10 Jun 2008, 1:25 PM
#1
karenkte avatar

karenkte

Zen Follower

Join Date:
Feb 2008
Posts:
200
Plugin Contributions:
0

Main page colours

I would like to change the colour of the text on my main page BUT only where it says Featured Products and Monthly Specials for June.

I want to change this to white so it stands out.

When i've tried this before other parts of the text alter also.

Does anyone know how to do this?

https://www.fairytalefashions.co.uk

Thanks

10 Jun 2008, 3:54 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Main page colours

You'll have to split centerBoxHeading away from leftBoxHeading in your stylesheet, and just change the color of that.

10 Jun 2008, 5:28 PM
#3
karenkte avatar

karenkte

Zen Follower

Join Date:
Feb 2008
Posts:
200
Plugin Contributions:
0

Re: Main page colours

Could you please explain exactly how I am to do this as I am not technical at all - I would really appreciate it.
Thanks

10 Jun 2008, 6:58 PM
#4
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Main page colours

Find this in your stylesheet:

.leftBoxHeading, .centerBoxHeading {
margin: 0em;
background-color: #663366;
padding: 0.5em 0.2em;
}

and make it look like this:

**.leftBoxHeading {
margin: 0em;
background-color: #663366;
padding: 0.5em 0.2em;
}

.centerBoxHeading {
margin: 0em;
background-color: #663366;
padding: 0.5em 0.2em;
color: #ffffff;
}**

See, what you're doing is giving the left box heading and the center box heading their own statements, so you can control them individually.