Could you please post link to your site and mention the problem? Use “FireBug” addon for Firefox/Chrome to find colours hex values
Thank you for the prompt reply.
The text under footer 1,2,3,4. The text under the headings Areas Served, Phone Systems, Structured Cabling.
Hi,
Here’s the code you can add to your style sheet or your custom.css file:
body {
color: #FFFFFF;
}
And the code for the color orange is : #FF4200
Have a good day! Chris
Chris,
Thanks for the reply. The text I would like to change the color on is actually in the footer area. I can’t seem to find the location to change the text color in the footer area. You can view at my website below, scroll down to the footer area and it is the dark gray text under the heading AREAS SERVED, I would like to lighten the text color.
Hi Idelacruz,
Here’s the code you can put in your style.css or custom.css sheet. It will make the text in your upper footer white instead of grey:
#colophon .row {
color: #FFFFFF;
}
Hope it works this time. Regards, Chris
Chris,
Thanks a bunch. I’ll give that a try.
Your are using text widget and not enabled “Automatically add paragraphs” option, that is a part of problem. If you enable it, the problem will be disappear. If you still want to display text without <p> tags, then add this rule to custom css (Dashboard => Theme Options => General Settings => Custom CSS textarea)
.site-footer { color: #dedede; }
Thank you guys for all the help. I enabled the “Automatically add paragraphs” and now it is showing as I needed. Chris1design answer will also give me more flexibility. Thanks for everything.