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

Anonymous
Not applicable
0EM50000000Ppsk.jpg
Tags (1)
1 REPLY 1
Anonymous
Not applicable
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>