can't add padding in dawn theme for featured product.

in this featured products section, the left and right sides are very close to screen edges and i want to increase the padding on both ends, i am currently using dawn theme and screen width=1200px. PLS HELP.

Hello @HK3105

Go to Online Store > Themes > Actions > Edit Code > Assets > base.css
Paste your CSS at the bottom of base.css and click Save

section.featured-collection {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (min-width: 1200px) {
  section.featured-collection {
    padding-left: 60px;
    padding-right: 60px;
  }
}