Hi @terriz
I hope you’re well today!
These arrows are standard thing for “number” type input fields, not really added by Forminator. You can remove them with a bit of additional CSS.
1. edit each of the currency fields from which you want to remove them and in “styling” section add your own class name (in my example I added “mycurrency1”)
2. add following CSS to your site (replace “.mycurrency1” with the class name that you used)
.mycurrency1 .forminator-field input::-webkit-outer-spin-button,
.mycurrency1 .forminator-field input::-webkit-inner-spin-button,
.mycurrency1 .forminator-is_hover input::-webkit-outer-spin-button,
.mycurrency1 .forminator-is_hover input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.mycurrency1 .forminator-field input,
.mycurrency1 .forminator-is_hover input {
-moz-appearance: textfield;
}
It’s best to add such CSS via “Appearance -> Customize -> Additional CSS” option.
Note: you may need to clear all caches (site/browser) after adding it to see changes.
Best regards,
Adam