I’d like to remove padding from the ‘Collection List’ section on the homepage for the theme motion. I’d really like this to be seamless with blocks above and below and to stretch to each side. Please see image for reference.
Hello! @ecommerceguy1 Please follow these steps to add this CSS code:
Go to your Online Store
Click on “Themes”
Select “Edit code”
Open your CSS file. If you have a custom CSS file, open that instead.
If you can’t find your custom CSS file, open “base.css”
Add the following code at the end of the file.
@media only screen and (min-width: 590px) {
body #shopify-section-template--16018759680087__featured_collections_E6ifmT{
max-width: 100% !important;
padding: unset !important;
margin:0px !important;
}
}
If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the solution.
Best regards
K.K
Thank you for this. It has fixed the issue with the width, however, I am still showing padding above and below. I am also using the Collection List block another 2 times further down the page. Is there a way that these will follow the same customisations?