QTY button is not aligned
-
please check the screenshot i gave. the cart page seems off aligned. after updating the latest version. i am facing this issue
Attachments:
You must be
logged in to view attached files.
Hello,
Sorry to hear about the inconvenience. Kindly, please share your Site WP-ADMIN Login details in the Private Content field so that we can check this concern on your Site and help you out accordingly.
Best Regards,
Hello,
Try to add the following custom css code in Theme Settings > Custom CSS > Custom CSS for desktop:
.woocommerce-cart-form .quantity {
display: inline-flex !important;
align-items: center !important;
height: 42px !important;
}
.woocommerce-cart-form .quantity .qty {
height: 42px !important;
line-height: 42px !important;
padding-bottom: 0 !important;
margin-top: -20px !important;
vertical-align: middle !important;
}
Add this code in the mobile custom css area.
.woocommerce-cart-form .quantity {
display: inline-flex !important;
align-items: center !important;
height: 42px !important;
}
.woocommerce-cart-form .quantity .qty {
height: 30px !important;
line-height: 42px !important;
padding-bottom: 0 !important;
margin-top: -20px !important;
vertical-align: middle !important;
}
Best Regards,