How to make Quantity and Add to cart at the same row?

Hi everyone,

I’d like to know how can i make Quantity and Add to cart at the same row?

I’m using Debutify theme, and it seems that the option is not “available” as dfefault, so I’d need to code it?

site: fundashogar.com

2 Likes

@orioln00 , go to theme.css and add the following code :

.product-single__add-to-cart {
   
    width: 50% !important;
    
    position: relative !important;
    bottom: 4rem !important;
    left: 19rem !important;
}

.product-single__quantity {
    display: inline-block;
    width: 50% !important;
}

Result:

1 Like