footer widget background color
-
I was able to change the footer color by using custom css*
#footer {
background: #008080;
}But the section of the original white bar, where the footer widgets reside, didn’t change. I did take notice of the post about an earlier version of the theme missing a line of two of code, but I assumed that had been resolved by now.
http://www.livingdonorsarepeopletoo.com
Thanks in advance for your help.
*I originally wanted the color to be the same as the body of the site, but the font color didn’t cooperate. I’m sure there’s a way to change the footer text color, but I haven’t gotten that far
Mod
Firebug suggests:
#sidebar_bottom {
background: none repeat scroll 0 0 #E3E3E3;
}Change
#e3e3e3
to whatever color you would like.I did take notice of the post about an earlier version of the theme missing a line of two of code
Thank you for taking the time to search the forum. There is a lot of information here now that we are over 2,000 topics.
I originally wanted the color to be the same as the body of the site, but the font color didn’t cooperate. I’m sure there’s a way to change the footer text color, but I haven’t gotten that far
Did you mean this:
#copyright h3 {
color: #E3E3E3;
}(Again, change the color code to whatever you would like.)
If that’s what you were looking for, you’ll also need:
#footer {
color: #999999;
}and possibly one or two others, but I think that is it.
Cheers!
That is exactly what I needed; thank you SO much!
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.