Hi guys this theme is awesome!
I need your help. My customer says that the quantity system is a little bit harder, the buttons are too small.
There is a way to use the normal selector?
(+) quantity (-)
instead of
quantity +
Thank you!
.quantity .plus,
.quantity .minus,
#content .quantity .plus,
#content .quantity .minus {
display: block!important;
}
.woocommerce .quantity input.qty,
.woocommerce .quantity.buttons_added input {
float: left;
}
Piotr Kunicki wrote:Hi,
Try to add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend)
- Code: Select all
.quantity .plus,
.quantity .minus,
#content .quantity .plus,
#content .quantity .minus {
display: block!important;
}
.woocommerce .quantity input.qty,
.woocommerce .quantity.buttons_added input {
float: left;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}