need help with decorative frames for my products

Topic summary

A user is experiencing a display issue with product frames on their Shopify store (womber.fr, using Dawn theme). On mobile devices, decorative rectangular frames around products don’t align properly, leaving white gaps between them, while desktop display works correctly.

Proposed Solution:
Another user provided CSS code to fix the mobile layout:

  • Navigate to: Online Store → Themes → Edit code
  • Locate the component-card.css file
  • Add a media query that removes gaps in the products grid on screens under 749px width

Status: The solution has been offered but not yet confirmed as implemented or successful. The issue appears to be a responsive design problem specific to mobile viewports.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

I need help with the decorative frames of my products, because as you can see, the rectangles on mobile do not join leaving empty white areas. While on computer, there is no problem of presentation. Can you help me?
My website is womber.fr and I use the dawn theme, the password to access the site is PROPAGANDAAA

Thanks!

Hi @PAUL8 , you can follow these steps:

Step 1: Open Online Store → Themes → Edit code.

Step 2: Find component-card.css file

Step 3: Paste this code at the bottom of the file

@media screen and (max-width: 749px) {
    .products-grid {
        gap: 0px !important;
    }
}

If this is helpful, please let us know by giving us a like and marking it as a solution. Thank you :heart_eyes:

1 Like