Is it possible to move quantity next to the add to cart button in Dawn theme?

Is it possible to move the quantity field so it is to the left of the add to cart button in the Dawn theme? Thanks!

A bit of css would do, please share your store url and password if store is not published or live.

https://shop.buriedinwork.com/products/clear-kit-deluxe-physical

Please do this first

from the customizer in your product template just drag the quantity selector block below the variant picker just as in the image. This will move quantity selector below variant selector which will make coding css a little more easier.

And then you can add this code in main-product.liquid file above everything

div[id*="Quantity-Form-template"]{ float:left; } .product-form{ float:right; margin: 4rem 0 !important; width: 50% !important; } .product__description{ clear: both }

This will do it. Things could have been more easier if only you give me collaborator access. But nevertheless try this and let me know.

That did it, thanks!

Great that it worked out for you.