Have the error message with the number of "errors" appear next to submit button.

  • kimmoeller
    Asked on February 10, 2021 at 11:56 AM

    I have a long form. When not all required fields are answered, when submitted, the error message only appears at the top. Would be helpful to have the message with the number of "errors" next to submit button.

  • Elton Support Team Lead
    Replied on February 10, 2021 at 3:33 PM

    The error message will actually appear in a fixed position at the stop so it is always visible on your screen even if you are at the very bottom part of your form. Example:

    02112021 UzMcd9n91l Screenshot 10

    Right now, there's no error that can be shown at the bottom but you can move the error from the top to the bottom if you like by injecting this CSS code into your form.

    .error-navigation-container {
      top: unset;
      bottom: 0;
    }

    Guide: How to Inject Custom CSS Codes