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 Default "Please enter a value greater than or equal to ..."

  1. All
    Member

    using a number field > http://s16.postimage.org/oosg3hsb9/image.png

    how do you hide the description:
    "Please enter a value greater than or equal to 0"

    Posted 12 years ago on Tuesday March 27, 2012 | Permalink
  2. You would view the source, get the ID of the containing div and then hide that element with a CSS rule.. something like this example.

    [css]
    body .gform_wrapper li#field_12_15.gfield .ginput_container div.instruction {
    	display: none
    }

    you would of course replace the "field_12_15" with the actual ID of the field in your form.

    You could also apply this to hide ALL of the "instruction" fields in your form by doing this..

    [css]
    body #gform_wrapper_1 li.gfield .ginput_container div.instruction {
    	display: none
    }

    just replace the "gform_wrapper_1 " with your actual form ID.

    Posted 12 years ago on Tuesday March 27, 2012 | Permalink