"This field is required" overlaps fields when form is in multi-column format. Anyone have a fix? | Community
Skip to main content
January 3, 2013
Question

"This field is required" overlaps fields when form is in multi-column format. Anyone have a fix?

  • January 3, 2013
  • 1 reply
  • 1037 views
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

January 3, 2013
Take a look at this article: https://community.marketo.com/MarketoArticle?id=kA050000000Kyss&src=

Moving the error messages:
Depending on how you set up your form, the error messages that appear on each field may be in the wrong position. Use this CSS to move the error messages below the field. You may need to tweak the left or top amounts until it appears correct on your form.
 
<style type="text/css">
span.mktFormMsg
  {
    left: 0px !important;
    top: 15px !important;
  }
</style>