How do i change the color of text in my footer?
-
Need to target text in my footer to change color?
The blog I need help with is: (visible only to logged in users)
-
Add this to your custom CSS:
footer a, footer a:visited, .custom-colors footer a, .custom-colors footer a:visited, .custom-colors footer { color:#eee; } -
-
The five different sections (4 widgets and attribution links) each have a unique ID, in order these are:
- text-19
- text-17
- text-21
- text-22
- footer-wrap
And you can then target the regular text or link text, here are some examples:
#text-19 a {color:#0f0;} #text-17 a {color:#f00;} #text-21 a {color:#00f;} #text-22 {color:#f0f;} #footer-wrap a {color:#ff0;} #footer-wrap {color:#0ff;}
- The topic ‘How do i change the color of text in my footer?’ is closed to new replies.