Change colour of home widgets

Hello there,

How to change the background color of portfolio widget and footage widget? Currently it’s black, but I want to change another color. I found there’s a white line under the background-full parralax if I add a portfolio section under it, so I want to change the color to remove the line.

The link is sunpark.club if you need.

Thanks in advance!

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 to change the color of the background.

Admin Area -> Appearance -> Customize -> Additional CSS

/*background color*/
.bg-dark {
    background: #fff;
}

Best Regards,
Support

Hi, thanks for the code. I also want to change the font color in the widget since it’s white while the background is also white.

Hey there,
Thank you for keeping in touch

You can try the following CSS to accomplish this.

h3.mb32 {
    color: #000000;
}
p.mb40 {
    color: #000000;
}
div.footer-credits {
    color: #000000;
}
div.footer-credits a {
    color: #000000;
}

Best Regards,
Support

Hi, I tried your code, but I found the text in footer widget still remains white. Is it because I used wrong widget?

Hello there,

Could you please provide a link to your website so that I can inspect it?

Best Regards,
Support

It’s http://sunpark.club

Hello there,

Thank you for the link. Please remove the previous code and try out this CSS code:

/*Footer text color*/
.bg-dark p, footer.bg-dark p, .bg-primary p, .bg-dark span, footer.bg-dark span, .bg-dark li, footer.bg-dark li {
    color: #000;
}

Best Regards,
Support