Hello @lightyouup,
Thank you for contacting MyThemeShop.
Unfortunately, color options are not available in the free version, but if you know a little bit of CSS code, you can easily change colors like background by adding that code in the WP Dashboard >> Appearance >> Customizer >> Additional CSS
Here is the code to change the subscription box’s background color:
// Box background.
.wp-subscribe-wrap {
background: #03A9F4; // Make subscription box blue
}
// Input field background.
.wp-subscribe-wrap input.email-field, .wp-subscribe-wrap input.name-field {
background: #1790c7;
}
Hope this helps.
Thank you.
Wondering if you were able to get the CSS above to change the color of the subscribe area. I have a site using the Oceanwp theme and insert the above, but nothing happened.
Any suggestions would be appreciated.
Someone had to do it for me, but here is the code he used:
.sidebar .wp-subscribe {
background: #36726c;
}
.sidebar .wp-subscribe input.email-field {
background: #254f4b;
}
.sidebar .wp-subscribe input.submit {
color: #36726c;
}
Hope it can help!