Hi there! I’d like to put the quantity and size fields side by side with each other versus stacked on top to save space and bring other fields up higher in the box. Can someone direct me on how/where to do this?
Hi @chloecreativest ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
Hi @chloecreativest ,
To change you follow the instruction:
- Go to Online Store->Theme->Edit code
- Asset->/theme.css->paste below code at the bottom of the file:
.product-form__option {
display: block !important;
}
@media (min-width: 641px) {
.product-form__variants {
display: flex;
}
.product-form__option {
width: 50%;
padding-right: 10px;
}
}
I hope it would help you.

