Hey,
I am looking to remove the space between the images. Essentially, having all the photo’s touching.
Link: https://wholesomeboy.co/pages/lookbook
Thanks!
A user seeks to remove spacing between images in a multi-column layout on their Shopify store using the Dawn 8.0 theme, wanting photos to touch each other without gaps.
Multiple CSS Solutions Provided:
.multicolumn-list class and set column-gap and row-gap to 0 !importantbase.css file in the theme’s Assets folderul#Slider-template--[ID] or .grid classImplementation Steps:
Several community members offered similar approaches with slight variations in selectors and specificity. Screenshots were shared showing successful results, though the discussion remains open without confirmation from the original poster about which solution worked.
Hey,
I am looking to remove the space between the images. Essentially, having all the photo’s touching.
Link: https://wholesomeboy.co/pages/lookbook
Thanks!
Hi @WholesomeBoy , you can do that by adding this CSS code below in Online store > Themes > Edit code > Assets > base.css
.multicolumn-list {
column-gap: 0 !important;
row-gap: 0 !important;;
}
Here is the result
Hi @WholesomeBoy,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
ul#Slider-template--16072400961706__dfe7dbbd-40aa-418b-b742-8859a36c6d02 {
gap: 0 !important;
}
Hope my solution works perfectly for you!
Best regards,
Victor | PageFly
Hello @WholesomeBoy
Try this code if you find it helpful:
Go to Online Store >Theme>Edit code>Assets>base.css>add code at the bottom
ul#Slider-template--16072400961706__dfe7dbbd-40aa-418b-b742-8859a36c6d02 .grid {
column-gap: 0 !important;
row-gap: 0 !important;
}
@WholesomeBoy
add below css into base.css at the end of the page
@media screen and (min-width: 750px)
{
.grid {
column-gap: 0px !important;
row-gap: 0px !important;
}
}