A user is experiencing an issue where product card borders on their collection page appear thicker where cards meet, creating a doubled border effect. They want the borders to overlap to maintain consistent thickness throughout.
Attempted Solutions:
Setting column gap to 0 via code didn’t work
Negative gap approach was unsuccessful
Suggested Fixes:
mit_1 recommended using negative margin with CSS: .product-grid .grid__item with margin-right: calc(var(--product-card-border-width) * -1)
Dan-From-Ryviu suggested removing left/right borders on .card elements using border-right: unset and border-left: unset in Custom CSS
Current Status:
The issue remains unresolved. The user reported that Dan’s solution created visible gaps between products. They’re seeking clarification on where to implement Tim’s code and alternative solutions.
Summarized with AI on November 7.
AI used: claude-sonnet-4-5-20250929.
Hey there, I want the boarders around my product cards to overlap so I don’t get this thicker line in the middle where they both sit next to eachother. The first photo shows how they sit next to eachother, but I would like them to overlap so the entire thing has the same thickness all around. I have set the column gap and row gap to 0 by code. Unsure if I can do a negative gap I couldnt get it to work.