PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

hide Number Range standard text "Please enter a value less than or equal to"

  1. Hi,

    How to hide the Number Range standard text "Please enter a value less than or equal to"?

    Regards,
    Dan

    Posted 10 years ago on Sunday June 9, 2013 | Permalink
  2. Richard Vav
    Administrator

    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

    Posted 10 years ago on Sunday June 9, 2013 | Permalink