change color of newsletter section - venture

Hi, how do I change the color of the “newsletter” section on my site? I looked into previous solutions and tried implementing the codes as suggested but nothing happened.

Theme: Venture

Site: https://plattery-co.myshopify.com/

Thank you.

Hi @thebetterstaple

What color would you like to have for that? Let me know!

Hi, I’d like to change it to #6EB3A3, with my header and sub-header in white. Thanks for your help!

Add the following code to your theme.scss file:

div#shopify-section-1633005665150d9758 {
    background: #6EB3A3;
}

#shopify-section-1633005665150d9758 > div > div {
    background: #6EB3A3;
}

#shopify-section-1633005665150d9758 > div > div > div.section-block__header.text-center > div > p {
    color: white;
}

#shopify-section-1633005665150d9758 > div > div > div.section-block__header.text-center > h4 {
    color: white;
}

Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!

Thank you so much, it worked!