Hello,
I would like the quantity button to be at the same level as the add to cart button above the upsell widget, but I can’t manage it.
Does anyone know how to do this please?
Here is my website: https://pqd9ge-cs.myshopify.com/products/brightening-eye-cream
hi @Ulysse12342
You can achieve this by adjusting the CSS of your product page. Try adding the following CSS code to your theme’s stylesheet or in the
Theme Customizer > Additional CSS section:
.product-form {
display: flex;
align-items: center;
gap: 10px; /* Adjust spacing if needed */
}
.product-form .quantity-selector {
order: -1; /* Moves the quantity selector before the Add to Cart button */
}
If the quantity selector is inside another container, you might need to tweak the structure using Liquid or JavaScript