Change Footer and Credits Text Color
-
How would I change the footer and credits text to a grey color instead of blue?
The blog I need help with is: (visible only to logged in users)
-
You can’t modify the footer credits like you have already. Changing the text to white, as you have done (blog at and theme) is the same as hiding them, and we are not allowed to hide the credits. Even changing them to a very light grey or something that is nearly invisible would be seen as hiding them, and doing that can get your site suspended. You need to either remove this or change the color to something visible:
#colophon { clear: both; color: #FFFFFF !important; text-decoration: none; }To change the links color in the footer, you can do this:
.site-info a { color: #999999; }I would not go much lighter than what I’ve used above, and set the #colophon back to that as well.
- The topic ‘Change Footer and Credits Text Color’ is closed to new replies.