Changing Widget Title-Text Color

Hey everyone,
At the bottom of https://www.oaksdumpsterrental.com/

I used this CSS (in “Additional CSS”) to change the background color of the footer area where my widgets appear:
.x-colophon.top {
background-color:#262626 !important;

}

I then added this second line to adjust the color of the body text:
.x-colophon.top {
background-color:#262626 !important;
color: #ffffff !important;

}

However, I can’t seem to change the color of the Widget Title-Text. It’s a grey text on a dark grey background, and I would like it to be white text on a dark grey background. Thanks for your suggestions!

Tyler

Did you try

h4.h-widget {
color:#ffffff; 
}
1 Like

That did the trick! Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.