As you can see from the image, there are white spaces in between the columns, does anyone know how to delete them?
Topic summary
A Shopify store owner is experiencing unwanted white spaces between columns on their product page and also cannot adjust font size for an image, suspecting it may be hardcoded.
Issue Details:
- White gaps appear between column elements on the product page
- Font size for a specific image cannot be modified
- Store URL provided: audette.store/products/lip-gloss-treatment
Proposed Solutions:
Two community members offered CSS code fixes:
-
First solution: Add CSS to base.css or custom CSS file targeting specific section IDs with
column-gap: 0 !important; -
Second solution: Insert CSS code in theme.liquid file within
<style>tags, using a media query for screens 750px+ to setcolumn-gap: 0rem !important;
Both solutions target the same section (#shopify-section-template--24305478435115__tab_collage_v3_CYBpTK) but differ in implementation method. The discussion remains open pending confirmation of which solution works.
hey @withaudette share the URL of your website so i can help you
Hey @withaudette Could you please share the store or page link? This will allow me to inspect it and provide you with a more tailored solution.
https://www.audette.store/products/lip-gloss-treatment
I can seem to also change the font size smaller for the image below, seems like it’s coded?
Hello! @withaudette 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.
#shopify-section-template--24305478435115__tab_collage_v3_CYBpTK .tab-collage-v2, #shopify-section-template--24305478435115__image_with_text_v3_wqhheN .image-with-text-v2 .image-with-text__grid {
column-gap: 0 !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 Accepted Solution.
Best regards
K.K
@media screen and (min-width: 750px) {
#shopify-section-template--24305478435115__tab_collage_v3_CYBpTK .tab-collage-v2 {
column-gap: 0rem !important;
}
}
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution



