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.

Changing the Error Message

  1. Christinarule
    Member

    Is there a way to change the error message? "There was a problem with your submission.
    Errors have been highlighted below "

    Also if you go to my page http://christinarule.com/wordpress/ and hit the submit button when the error pops up it takes away the button??

    Posted 13 years ago on Friday October 22, 2010 | Permalink
  2. Yep, just answered that on your other post.

    http://forum.gravityhelp.com/topic/custom-styling-question#post-11520

    Posted 13 years ago on Friday October 22, 2010 | Permalink
  3. Christinarule
    Member

    Ah sorry I was just about to delete that one! I wanted to create a new thread encase someone else had the same question in the future.

    Posted 13 years ago on Friday October 22, 2010 | Permalink
  4. No worries. That's thoughtful and I'm sure will be helpful. Thanks.

    Posted 13 years ago on Friday October 22, 2010 | Permalink
  5. Kevin answered your validation message question here:

    http://forum.gravityhelp.com/topic/custom-styling-question#post-11516

    As for your submit button issue, this is because you have the form appearing in a container that is set to overflow: hidden. Not only is the submit button hidden because of this, but any part of the form that falls below the available space for that container is also hidden. This is unavoidable with a container that is set to overflow hidden.

    You would have to tweak the styles for this form so that even with errors it still fits within the available space of the container it is in that has overflow: hidden; applied to it.

    You could start by hiding the individual field validation messages with something like this:

    #gform_1 validation_message {display: none;}

    But you may need to tweak some more to make it work with how you have it implemented.

    Posted 13 years ago on Friday October 22, 2010 | Permalink