Go to your online store → customize → settings → custom css and paste this code there
@media (max-width: 767px) {
.card:not(.ratio) {
width: 153px;
}
.grid {
column-gap: 38px;
}
}
A Shopify store owner using the Sense theme wants to make Featured Collection cards wider on mobile devices, as they currently appear too narrow compared to the desktop view.
Solution Provided:
Multiple users suggested adding custom CSS code to adjust the mobile layout:
.card:not(.ratio) and .grid properties to adjust card width (153px) and column gap (38px)Alternative Approach:
One user noted that the Sense theme uses a carousel by default on mobile and recommended using a single-column layout instead for better mobile presentation.
Outcome:
The original poster confirmed the CSS solution worked after some minor adjustments to the numerical values, successfully resolving the issue.