collection card a bit smaller

Topic summary

A user wants to reduce the size of collection cards on mobile by approximately 20%.

Another participant provided a CSS solution using a media query targeting screens under 749px width, adding padding-inline: 40px to the collection list section. They shared a screenshot showing the expected result.

The original poster reported the code didn’t work and shared their implementation in the custom CSS section. However, the helper noted that the suggested code (padding-inline: 40px) wasn’t actually present in the custom CSS—only row-gap: 10px appeared, indicating the code may not have been properly added or saved.

Status: Unresolved. The issue appears to be incorrect implementation of the provided CSS code rather than the solution itself being ineffective.

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

Hi,

I desire to make the collection card a bit smaller on mobile

20% smaller approximately.

Is there a way please ?

https://wmqgez-r2.myshopify.com/?_ab=0&_fd=0&_sc=1

Hi @Artez

let try to add this custom css code:

@media screen and (max-width: 749px) {
    #shopify-section-template--18541339115701__collection_list_TJVYQQ.section-collection-list .collection-list:not(.slider) {
        padding-inline: 40px;
    }
}

did not work yet, maybe it is because I changed a bit the page order?

https://wmqgez-r2.myshopify.com/?_ab=0&_fd=0&_sc=1

where did you add this code? I don’t see you added on storefront

Does not work yet. On custom CSS

I only see the style row-gap: 10px, don’t see my code suggestion is padding-inline: 40px