Home Forums WoodMart support forum Quantity Number is not displayed

Quantity Number is not displayed

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #700500

    juli
    Participant

    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.
    #700624

    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,

Viewing 2 posts - 1 through 2 (of 2 total)