-
AuthorPosts
-
May 12, 2014 at 12:04 pm #43526
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?
May 13, 2014 at 3:45 am #43837Hi Louie,
Can you check if the zoom level of your Firefox is in 100%.
Thanks!
May 13, 2014 at 4:09 am #43847I have the same problem. My zoom level is 100% in firefox
May 13, 2014 at 12:08 pm #43974Hi,
Just checked. Zoom level is 100%.
May 14, 2014 at 3:54 am #44228Hey 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. 🙂
May 14, 2014 at 4:01 am #44231Thanks 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.
🙁
May 14, 2014 at 5:05 pm #44449Ok, 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?May 14, 2014 at 9:29 pm #44534That 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. 🙂
May 14, 2014 at 9:53 pm #44542BRILLIANT
Thanks Louie so much.
Nx
May 15, 2014 at 2:01 pm #44839You’re welcome Nick!
-
AuthorPosts