I’m new to webflow and i’m struggling a bit on my first client project.
I added a form in which there is an input number field.
There are two little arrows on the right of the field to increase or decrease the amount that is inputed in the field. It doesn’t bother my client, but he would like the value to change from 50 to 50 instead of 1 to 1 as it is right now.
So my question is, how can I change the value that is added to the number when clicking on these up/down arrows ?
Assuming it’s an input type=number, you can use HTML’s step attribute.
You might be able to create a custom attribute on the input of step=50. If it’s reserved, you may need to use Javascript to do that. If it’s not an input type=number field, check whatever library you’re using, it should have options.