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

Hi there,

I’m looking to change the full background colour of just one section.

The colour will not extend to the entire section. Can anyone help with this.

Website: https://uc-biosciences-quest.myshopify.com/

Hey @unisonweb
Follow these steps to change the background color of your section.

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid and add the following code in the bottom of the file above

Note: You can set any color you want by making changes in the code where the color is mentioned.

1 Like

@unisonweb

div#shopify-section-template--18119675904311__b82a4d49-46a0-49a1-ae89-fea308c16cfa {
    background: #ebf6fd;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

1 Like

Thanks a lot, this worked.