Hello!
I would like to center my quantity selection and add to suitcase button that appears underneath the product images on the left of this page. I would also like to remove the price directly above this button.
Thanks!
Hey KeyshaunSmith,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top.single-product form.cart {
display: flex;
float: none;
align-items: center;
justify-content: center;
}
#top.single-product form.cart .quantity,
#top.single-product form.cart .quantity * {
margin-bottom: 0;
}
Best regards,
Nikko
Perfect!
Now how do I remove the price that is auto attached to the button?
The small blue text that has the product price?
Thanks!
Hi KeyshaunSmith,
Please add this CSS code in Quick CSS, located in Enfold > General Styling:
#top.single-product .av-woo-purchase-button p.price {
visibility: hidden;
}
Best regards,
Nikko