Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi guys,
I would like to have the product pictures on the product page really close to each other as shown in the picture. Could anyone help me?
Solved! Go to the solution
This is an accepted solution.
Okay, please open assets/base.css and find the following code:
@media screen and (min-width: 750px) {
.grid {
column-gap: var(--grid-desktop-horizontal-spacing);
row-gap: var(--grid-desktop-vertical-spacing);
}
}
And comment this line like this: /* column-gap: var(--grid-desktop-horizontal-spacing); */
Find the following in base.css:
.grid {
display: flex;
flex-wrap: wrap;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: var(--grid-mobile-horizontal-spacing);
row-gap: var(--grid-mobile-vertical-spacing);
}
And comment this line: /* column-gap: var(--grid-mobile-horizontal-spacing); */
That's it.
Hi @Nienke_pr
I can help you.
Yes please
miyucollective.com
@Nienke_pr Do you want this?
Yes actually
This is an accepted solution.
Okay, please open assets/base.css and find the following code:
@media screen and (min-width: 750px) {
.grid {
column-gap: var(--grid-desktop-horizontal-spacing);
row-gap: var(--grid-desktop-vertical-spacing);
}
}
And comment this line like this: /* column-gap: var(--grid-desktop-horizontal-spacing); */
Find the following in base.css:
.grid {
display: flex;
flex-wrap: wrap;
margin-bottom: 2rem;
padding: 0;
list-style: none;
column-gap: var(--grid-mobile-horizontal-spacing);
row-gap: var(--grid-mobile-vertical-spacing);
}
And comment this line: /* column-gap: var(--grid-mobile-horizontal-spacing); */
That's it.
thank you so much. Is it also possible to remove the white lines next to the product as shown in the picture
Please find this code in base.css.
@media screen and (min-width: 990px) {
.grid--4-col-desktop .grid__item {
width: calc(25% - var(--grid-desktop-horizontal-spacing)* 3 / 4);
max-width: calc(25% - var(--grid-desktop-horizontal-spacing)* 3 / 4);
}
}
And comment this line: /* max-width: calc(25% - var(--grid-desktop-horizontal-spacing)* 3 / 4); */
Hi @Nienke_pr
Could you share your store URL?
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Yes ofcourse
miyucollective.com