Jump to content

Double set of quantity arrows


musicmaster

Recommended Posts

On the cart page the quantity field has arrows at its side with which you can increase and decrease the quantity. 

Since I temporarily went back to the Prestashop default theme I have a double set of arrows. How does this come and how can I get rid of the left one?

double.jpg.afe816a5174e29c1357d0d54b370796a.jpg

Link to comment
Share on other sites

Those arrows inside input are added by browser when input type is number, you can hide it in css by:

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

 

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...