How can I alter the background color of a specific section?

Hi, how to change the section background colour?

Only for the attached image section from https://thebirdsonglife.myshopify.com/

1 Like

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > styles.css and paste this at the bottom of the file:
div#shopify-section-template--14370506440778__16359278867b92de38 .use-alt-bg {
background: #ceceff;
}
1 Like

Hi @web-har-red ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/styles.css->paste below code at the bottom of the file:
#shopify-section-template--14370506440778__16359278867b92de38 .use-alt-bg {
    background-color: #f7f7f8;
}

NOTE: You can change value #f7f7f8 to math your theme.

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.