musicmaster Posted 20 hours ago Share Posted 20 hours ago 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? Link to comment Share on other sites More sharing options...
Daresh Posted 20 hours ago Share Posted 20 hours ago Does it show on every browser? Link to comment Share on other sites More sharing options...
musicmaster Posted 19 hours ago Author Share Posted 19 hours ago It shows in Firefox too. Small difference is that in Firefox the left buttons are always visible while in Chrome you se them only when you move the mouse over the quantity field. Link to comment Share on other sites More sharing options...
Daresh Posted 19 hours ago Share Posted 19 hours ago It does not look like it's coming from the default theme, must be some additional script. Link to comment Share on other sites More sharing options...
endriu107 Posted 19 hours ago Share Posted 19 hours ago 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; } 1 Link to comment Share on other sites More sharing options...
musicmaster Posted 18 hours ago Author Share Posted 18 hours ago That works! Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now