Footer text color – sketch theme
-
i want to change the colour of the footer text with the css editor for the Sketch theme.
I have tried a few different options but with no success. Is it possible in this theme?Any tips?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
you should change the colors with these lines of code:
/* the color you want for the text */
.site-footer a, a:visited, a:active {
color: rgb(0, 0, 0);
}/* the color you want when mouse hovers over */
.site-footer a:hover {
color: rgb(128, 128, 128);
}You can use hex color codes if you wish.
For more info about styling links with css:
http://www.w3schools.com/css/css_link.aspFor more info about colors:
http://www.w3schools.com/cssref/css_colors.aspPls. let me know if it worked.
-
Do you mean you would like to change the color of the following text in your footer:
Create a free website or blog at WordPress.com. The Sketch Theme.
Have you got a Custom Design upgrade?
-
@mrlubomir thanks – doesn’t seem to have worked though
staff-happychia thanks. yes – that is the text I mean. Yes I do have the custom design upgrade.
-
also, i want to change the hover/ block colour on the social links… can’t get that to work either.
wondering whether this can’t be altered for this them…? -
@daveberlach: I am sorry that it didn’t work. Try to replace “.site-footer” for “.site-info” in the code I typed above. I am currently on the machine I’m not familiar with (Firefox on Linux) and can’t get into this deeper.
-
@mrlubomir still didn’t work. that’s okay – thanks for your effort!
i’ll keep searching. pretty new to CSS so more searching can’t be a bad thing! -
At the moment you have the code included as a CSS comment so it won’t have any effect – it should work if you remove the comment bits (the slash and asterisk):
/* this starts the comment and this ends it */
- The topic ‘Footer text color – sketch theme’ is closed to new replies.