Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
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;
}
}