Product card quantity selector full width

I’m using Horizon theme in that I want to customize the width of the quantity selector in product card I want to make it to full width only in mobile.

1 Like

Screenshot 2026-03-08 at 4.50.35 PM

I can’t able to give link and the password is growzen

Hey @sivaus

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
@media screen and (max-width: 767px) {
.resource-list__item quantity-selector-component.quantity-selector, .resource-list__item .quantity-selector-wrapper {
    min-width: 100% !important;
}
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

1 Like