Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #27848

    m c
    Participant

    hi, on the single product page when adjusting the quantity to more than 9 the box doesn’t accomodate double figures without cutting the edge of the numbers off.

    regards

    #27849

    m c
    Participant
    This reply has been marked as private.
    #28199

    Alexander
    Keymaster

    Hi M,

    Thanks for bringing this to our attention. For now, you can fix this by using an automatic width in CSS. To add custom CSS, you can go to Customizer > Custom > CSS in your dashboard.

    .woocommerce .quantity input[type="number"], .woocommerce-page .quantity input[type="number"] {
    width:auto;
    }

    You could also just give a specific width that’s a bit wider like this:

    .woocommerce .quantity input[type="number"], .woocommerce-page .quantity input[type="number"] {
    width:4em;
    }