In the Product Field, I have User defined price, When i select that, the input price is showing in big size, how to reduce the size of the user defined input field, there is no options such as "SMALL, MEDIUM" please help its urgent.
In the Product Field, I have User defined price, When i select that, the input price is showing in big size, how to reduce the size of the user defined input field, there is no options such as "SMALL, MEDIUM" please help its urgent.
Here is one way to do it with CSS. Target all the fields where you have the user defined price:
[css]
.gform_wrapper .gform_body #input_2_44,
.gform_wrapper .gform_body #input_2_47,
.gform_wrapper .gform_body #input_2_60,
.gform_wrapper .gform_body #input_2_64,
.gform_wrapper .gform_body #input_2_69,
.gform_wrapper .gform_body #input_2_79,
.gform_wrapper .gform_body #input_2_83 {
width: 14em;
}
Adjust the width from there and add margins around it if you like. There are likely other ways of doing it, but this worked for me.