How To Change The Background Of Subscribe Section

Hi, I want to change the background of subscribe section and social section from Black to White, and change the font color from white to black, any idea ? Thanks !

subscribe-background.png

Try to add the following code to the CSS section of the Theme editor

.footer-stay-connected {
    background: #fff;
}
h3.ty-social-link__title {
        color: #000;
}
.ty-social-link i, .ty-social-link i:hover {
       color: #000 !important;
       border-color: #000 !important;
}

Try to add the following code to the CSS section of the Theme editor

.footer-stay-connected {
    background: #fff;
}
h3.ty-social-link__title {
        color: #000;
}
.ty-social-link i {
       color: #000;
       border-color: #000 !important;
}

Very appreciate ! But when move mouse on the social icon, it will turns to white, how to make it like as original to display as green ? Thanks again !


Screenshot attached, thanks !

icon.png

I have corrected code in my post. Please try

I have corrected code in my post. Please try

Very appreciate ! Thank you very much !

You are welcome!