Quantity Number is not displayed
-
Hello everbody,
the quantity number is not displayed in the shopping cart. I have read the other posts on this topic, but unfortunately they did not help. I have deactivated all plugins – the bug persists. I tested with Storefront – the bug has disappeared, so I think it is a Woodmart problem.
The code snipped
.woocommerce .quantity input.qty { width: 3em !important;}
do not work as well. 🙁
I look forward to receiving prompt assistance. 🙂
Greetings,
Julia
Attachments:
You must be
logged in to view attached files.
Hello,
This code is causing the issue that you have added in the Theme Settings > Custom CSS.
div.quantity {
display: inline-block;
width: 15%;
margin-top: 15px;
margin-right: 10px;
}
The fixed width (15%) makes the quantity box too small on the cart page. You can fix it by removing this code, or replacing it with:
div.quantity {
width: auto !important;
}
Best Regards,