How can I add a custom background image on multicolumn (using Dawn theme)

Hi @erika_brandlab1

Please follow these steps:

  1. From Shopify admin → Online store → Edit code:
![view - 2023-02-09T102643.506.png|1891x940](upload://gnqBIzcqycLi7gAB4coGQZQWUqr.png)
  1. You find the file base.css and add the following code at the end of the file:
.section-template--17118277304601__e1225a6b-f8d2-4be2-b2c0-9e9ee69013fe-padding  {
  background-image: url("your-image-url");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: content-box;
}

For “your-image-url”, you can add the following:

From Shopify admin → Settings → Files, you upload the file and then use that image link.

I hope that this can help you solve the issue.

1 Like