Change footer color
-
Complete newby to css. I like to change the footer color to white in my Reddle premium theme.
What code do I need to put in the CSS module ?The blog I need help with is: (visible only to logged in users)
-
Please add the following CSS and feel free to let me know if the result is not what you wanted:
#colophon, #supplementary { background-color: #fff; } #page #supplementary .widget-area { background-color: #fff; } #colophon a, #site-info { color: #000; } -
Oops, we can combine the first two rules. So the full CSS to add is:
#colophon, #supplementary, #page #supplementary .widget-area { background-color: #fff; } #colophon a, #site-info { color: #000; } -
-
- The topic ‘Change footer color’ is closed to new replies.