Hi,
How to hide the Number Range standard text "Please enter a value less than or equal to"?
Regards,
Dan
Hi,
How to hide the Number Range standard text "Please enter a value less than or equal to"?
Regards,
Dan
Hi Dan,
To remove the min max instruction you would have to target and hide it with CSS by adding the following to your theme's stylesheet
.gform_wrapper .instruction {
display: none !important;
}
The above will hide all instances of the instruction div found on the page so if you only want to hide one specific instruction you could modify the selector and use the field id instead like so
#field_15_1 .instruction {
display: none !important;
}
Regards,
Richard