If you go to:
http://www.graphicz.eu.com/smart/
(Thi is a default Smart site) Choose a product and add it to cart then view cart.
The quantity box has a wierd rectangle in it and no number:
Increasing the width of .content-area form table.checkout-cart tr td.cart input[type="number"] to 4em reveals the quantity integer but the blobby rectangle remains:
This is in fact an up and a down button, default in browsers with input[type="number"].
Various Google hits show how the spin buttons should be removable: eg: http://stackoverflow.com/questions/1...umber-in-opera
But if I add:
Either to the css or the head of responsive outer layout it does not get picked up and cannot be seen in Firebug.
The actual input does not appear in SD Shopping Cart Layout as it is an 'ActinicTemplate' which my be the issue
Any clues as to what to do here?
Thanks
http://www.graphicz.eu.com/smart/
(Thi is a default Smart site) Choose a product and add it to cart then view cart.
The quantity box has a wierd rectangle in it and no number:
Increasing the width of .content-area form table.checkout-cart tr td.cart input[type="number"] to 4em reveals the quantity integer but the blobby rectangle remains:
This is in fact an up and a down button, default in browsers with input[type="number"].
Various Google hits show how the spin buttons should be removable: eg: http://stackoverflow.com/questions/1...umber-in-opera
But if I add:
Code:
.content-area form table.checkout-cart tr td.cart input[type="number"]::-webkit-inner-spin-button, .content-area form table.checkout-cart tr td.cart input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; -moz-appearance: none; appearance: none; margin: 0; }
The actual input does not appear in SD Shopping Cart Layout as it is an 'ActinicTemplate' which my be the issue
Any clues as to what to do here?
Thanks
Comment