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.
A user working with Shopify’s Dawn theme (version 15.4.0) wants to adjust the slideshow component’s margins to match those of the collections section below it.
Key Details:
Status: The question remains unanswered with no solutions or suggestions provided yet.
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.
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 ![]()
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!