How to enable swipe on mobile like this?

Topic summary

A user wants to enable horizontal swipe functionality for product collections on mobile devices, sharing a reference image of the desired behavior.

Solutions provided:

  • Disable “Stack products” option: Navigate to Online Store > Themes > Customize > Featured Collection settings and turn off the “Stack products” toggle, which currently forces vertical stacking on mobile.

  • CSS override method: Add custom CSS code to assets/theme.css that forces scrollbar buttons to display on mobile screens (max-width: 699px), enabling horizontal scrolling.

  • Theme customization settings: Access the Featured Collection tab in the theme customizer to adjust display options directly.

The store in question is 24builds.com. Multiple community members offered different approaches, with the “Stack products” toggle being the most straightforward solution for enabling swipe/horizontal scroll on mobile.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Can anyone help me, how to make it

Hello,
Please share “Store URL”
Thanks!

24builds.com , check it on mobile

Go to the Online Store >>> Customise >>> Featured Collection Tab
Then you can open option as i shared on screen shot

Thanks!

@Somehow999

Add the following code to your assets/theme.css bottom of the file.

@media screen and (max-width: 699px) {
.scrollbar__buttons {display: flex !important;}
}

Thanks!

Hi @Somehow999

Please disable “Stack products” option of Featured collection’s settings in your Online Store > Themes > Customize to do that.