i have looked everywhere for this so it must not be there or i have gone blind
can somebody help me, i need to change the colour of the categories.
on the left hand side they are pink and i need them blue
www.directpcsupplies.com
thanks
i have looked everywhere for this so it must not be there or i have gone blind
can somebody help me, i need to change the colour of the categories.
on the left hand side they are pink and i need them blue
www.directpcsupplies.com
thanks
In your stylesheet.css find this and change the color to this:
Code:.leftBoxHeading, .centerBoxHeading { margin: 0em; background-color: #0000ff; padding: 0.5em 0.2em; }
Note: this will also change headings in the center from pink to blue.
If you only want to change the left sidebar headings to blue, separate the two heading declarations:This will change all the left headings to blue, not just the categories heading. If you want even more control, there are easy ways to find out what to change. Just ask.PHP Code:.leftBoxHeading {
margin: 0em;
background-color: #0000ff;
padding: 0.5em 0.2em;
}
.centerBoxHeading {
margin: 0em;
background-color: #xxxxxx; /* <-----leave as is */
padding: 0.5em 0.2em;
}
PS - if it is not headings you want to change but the category names area, that will also be a different declaration to change.
- OK, looked at your site and it is headings you want....
Last edited by gjh42; 14 Feb 2007 at 06:22 AM.