Change Widget Text Colour & Hyperlink text colour

Hi,

I’m struggling to edit the text colour on my widget footer section. It seems that my body text colour for my pages and the widget text colour is linked to one another, but I want them to each have a different colour.

My body text colour should remain grey, as it is now on the white background. But now my widget text colour is also grey on the purple widget background colour, which doesn’t make it readable.

Is there any CSS code that I can add to change the widget text colour?

I would also like to change the text colour used on links, as you can see under the ‘Contact Us’ section, where the address and email are in a different colour.

Thanks, I look forward to your feedback and help :slight_smile:

Hey there

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 -> Additional CSS

/*change footer color text*/
#footer h5 {
    color: #ffffff;
}
#footer ul li a {
    color: #ffffff;
}

Best Regards,
Support

Hi,

Thank you for the response. Unfortunately it did not work :frowning: