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

    Louie A
    Participant

    Hi,

    After upgrading (automatically) to the latest version of firefox, the qty total amount appears as up and down areas. It works fine in other browser. Below are two photos showing the problem in firefox and everythng working smoothly in chrome. Any ideas?

    http://americaneventrentals.com/?attachment_id=2798

    http://americaneventrentals.com/?attachment_id=2797

    #43837

    Support
    Member

    Hi Louie,

    Can you check if the zoom level of your Firefox is in 100%.

    Thanks!

    #43847

    Nick T
    Participant

    I have the same problem. My zoom level is 100% in firefox

    #43974

    Louie A
    Participant

    Hi,

    Just checked. Zoom level is 100%.

    #44228

    Christian
    Moderator

    Hey guys,

    Please widen the box for a moment while we workout a fix for this. Add the CSS:

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

    Hope that helps. 🙂

    #44231

    Nick T
    Participant

    Thanks for the efforts – made no difference on my site

    http://dev.picnicproviders.com/cart/

    I also tried increasing the widthe and the height but the digit (number) just doesn’t show.

    🙁

    #44449

    Louie A
    Participant

    Ok, this worked for me. I found it after googling. Works in firefox and chrome:

    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    }

    input[type=number] {
    -moz-appearance:textfield;
    }

    ————————————————————
    So it seems to be new default chrome in firefox. Maybe this code or something like it can be added to any normalize section of the CSS?

    #44534

    Christian
    Moderator

    That is right Louie. The problem is only in Firefox though. Chrome works fine. The code below would suffice.

    input[type=number] {
        -moz-appearance:textfield;
    }
    

    Hope that helps. 🙂

    #44542

    Nick T
    Participant

    BRILLIANT

    Thanks Louie so much.

    Nx

    #44839

    Rad
    Moderator

    You’re welcome Nick!