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

I can’t able to give link and the password is growzen
Hey @sivaus
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- 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
