Greetings
Hello, i want to align variant picker and quantity in the same line both for mobile and desktop. Does anyone knows how to do that?
Thanks in advance
Greetings
Hello, i want to align variant picker and quantity in the same line both for mobile and desktop. Does anyone knows how to do that?
Thanks in advance
Hey!
I did the same not too long ago. Can you share your store url, then I should be able to provide the actual code.
Best,
Flo
Hi, and thanks for reply
https://hairworkshop.gr/products/volume-senses-amplifying-shampoo
This sadly requires an actual code change not just CSS, since in your theme they are two different components.
If you are liquid savy, you want to merge the quantity selector with the variant selector file, and make the container a flex-box.
If you’re uncomfortable making the changes I can help you as well. Simply send me a dm ![]()
Best,
Flo
Hey @mpatsi
Follow these Steps:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi, thanks for helping, in the desktop is fine but in mobile do not work unfortunately.
Hey @mpatsi
Keep the previous code and add this code as well right above
@media only screen and (max-width: 480px) {
.product-form__input .select {
max-width: 18rem;
}
quantity-input.quantity {
float: right;
margin-top: -65px;
}
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
That works perfectly! Thanks man.