Dawn Theme - Change slideshow margins to match the collections below

Hi,

I’m using dawn theme 15.4.0 and wanted apply margins to my slideshow (this is the basic slideshow component within dawn theme) and match them with the margins that the new arrivals collection has.

Thanks in advance! No custom codes used here.

1 Like

Hi @christianjardiolin

Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.

Best regards,
Devcoder :laptop:

If no mods applied, then paste this code into “Custom CSS” of the Slideshow section.
The code mimics the page-width class which is used in other sections to limit their width.

{
  max-width: var(--page-width);
  padding: 0 1.5rem;
  margin: 0 auto;
}
@media (min-width: 750px) {
  {
    padding: 0 5rem;
  }
}

Note that this code is designed to be used in “Custom CSS” of the section and would not work elsewhere.

Thank you so much! It worked!