Hi, I want to remove all white space between products on collection page. I have seen different guides, but none have worked. This is how my page looks currently:
This is how I want it to look:
My theme is Monaco.
Thank you!
A user seeks to eliminate white space between products on their collection page using the Monaco theme. They want products to display edge-to-edge without gaps, as shown in their reference image.
Solutions Provided:
Multiple CSS-based solutions were offered:
column-gap: 0rem !important; to .collection-product-list in base.cssgap: 0px !important; to .collection-product-list in base.css<style> tag in theme.liquid file above </body>#product-grid { gap: 0 !important; } through Theme Customizer’s Custom CSSFollow-up Question:
The original poster asked how to also remove edge spacing so images extend fully side-to-side. One responder indicated their solution already addresses this requirement.
Status: The initial gap removal appears resolved, with the edge-spacing question potentially answered but not explicitly confirmed by the original poster.
Hi, I want to remove all white space between products on collection page. I have seen different guides, but none have worked. This is how my page looks currently:
This is how I want it to look:
My theme is Monaco.
Thank you!
Hello @Studiolamea
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
.collection-product-list {
column-gap: 0rem !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hey @Studiolamea please try this code.
Go to Shopify Admin > Online Store > Edit Code > base.css
Go to end of base.css file and paste the following code.
.collection-product-list {
gap: 0px !important;
}
Results:
Let me know if this work for you either I provide you other solution code.
Hey @Studiolamea
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Amazing, thank you! Is there a way to remove the white space from the edges as well? So the pictures fill the whole space, side to side?
Hi @Studiolamea
Please add this code to Custom CSS in Online Store> Themes > Customize > Theme settings.
#product-grid { gap: 0 !important; }
Hey @Studiolamea
If you try out the code which I shared with you, it will work perfectly exactly how you want.
Best Regards,
Moeed