Footer Colours - text and links

Hi, can you please let me know the CSS for changing the following in the footer:

  1. The link and link hover colours
  2. The text colour (when it is not a link)

When I go to ‘inspect’ I’m getting confused with the Div & Class names.

Note: I use Simple Custom CSS plugin for my CSS.

Hi @shonaguthrie,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

#colophon{
  color: #fff;
}

#colophon a{color: #067976;}

#colophon a:hover{
  color: #b9a60a;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin

Will this change only the footer or all the texting?

Thank you!

@ezra It will change colors only of footer text and links.