Looking to position the quantity input field and Add to cart button next to each other instead of one below the other in Bricks?
Add this CSS:
form.cart {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 1em;
}
.single-product .summary form.cart .quantity+button {
margin-top: 0;
}
Before:
After:
1 comment
Barnabas Chris
I think the css should be
flex-wrap: nowrap;