A user working with Shopify’s Studio Theme seeks to eliminate white gaps between collections in their homepage collection list. They successfully removed side, top, and bottom padding but struggled with the middle gap.
Solutions provided:
Adding CSS to base.css with row-gap: 0px and column-gap: 0px for .collection-list removed the middle gap but created side padding issues
Setting max-width: initial for .collection-list-wrapper and .marquee-container partially resolved the side padding
A media query solution targeting .collection-list__item with 50% width was suggested, though concerns were raised about using !important and limiting layouts to two items per row
Alternative approach recommended using .grid-uniform .grid__item { padding: 0; } to avoid !important overrides
Current status:
The discussion remains open with the original poster seeking mobile-responsive solutions. A separate user later joined asking about reducing top/bottom padding for their collection list, indicating this is a common customization need in the Studio Theme.
Summarized with AI on November 15.
AI used: claude-sonnet-4-5-20250929.
I would like to remove the gap between the collections in my homepage collection list. I’ve successfully removed the side, top, and bottom padding, but haven’t figured out a way to remove the middle one.
My site is Street Smarts and the password is smarts. Here’s the screenshot of the collection list.
However, the collection-list-wrapper didn’t. I already placed a code that removed the gap between the collections but moved the padding to the side of the collections. Maybe this will help:
.collection-list {
row-gap: 0px !important;
column-gap: 0px !important;
justify-content: center;
}
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-collection-list.css->paste below code at the bottom of the file:
The issue with this code is that it uses !important to override the default styling of the .collection-list__item element, which can lead to unexpected behavior or difficulties in further modifying the element’s styling. Additionally, setting the width and max-width of each item to 50% means that only two items will appear per row, which may not be the desired layout for all screen sizes. It’s generally best to avoid using !important unless absolutely necessary and to use responsive design techniques to ensure the layout works well on all devices.
insted use this .grid-uniform .grid__item { padding: 0; }
This should remove the padding between collections in your homepage collection list.
Hey! I’ve been trying to reduce the top and bottom padding of the collection list. Please go to https://nuclieus.com/ see the collection list right after the hero image. It’s 2 collections, but I want to reduce the top padding. I need the collectio list to show up higher (for less scroll on mobile devices). Please help, thanks!