SOLVED

Wired Form Functionality

Go to solution
Ravi_Ansal2
Level 6

Wired Form Functionality

Hi There,

I am facing a weird problem with Forms 2.0.

I have three required drop down select box and they all are required. If some body doesn't fills it up then as usual the validation popup comes up but the problem is after that popup i am not able to select that field again. Below is the Screen Shot.

pastedImage_0.png

I am not able to select it again and if i go ahead and click on some other field that it works.

Is there any one facing the similar issue.

1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Wired Form Functionality

You have a CSS rule applying to the validation errors (the red box) that I doubt your designer intended to cascade into the form.  This is affecting your ability to navigate back to the inputs after an error.

SECTION DIV {

    position: relative !important;

    top: 0px !important;

    left: 0px !important;

}

All the DIVs in the Marketo form are SECTION DIVs on your page.  You should figure out something more specific -- try SECTION > DIV instead.

View solution in original post

6 REPLIES 6
SanfordWhiteman
Level 10 - Community Moderator

Re: Wired Form Functionality

Please post the actual URL instead of just a screenshot, so I can see the bug in action.

Ravi_Ansal2
Level 6

Re: Wired Form Functionality

Here You go Sanford:

Best Practices: Modeling Complex Products

Try selecting that field after the POP up before clicking on any other Field.

SanfordWhiteman
Level 10 - Community Moderator

Re: Wired Form Functionality

You have a CSS rule applying to the validation errors (the red box) that I doubt your designer intended to cascade into the form.  This is affecting your ability to navigate back to the inputs after an error.

SECTION DIV {

    position: relative !important;

    top: 0px !important;

    left: 0px !important;

}

All the DIVs in the Marketo form are SECTION DIVs on your page.  You should figure out something more specific -- try SECTION > DIV instead.

Ravi_Ansal2
Level 6

Re: Wired Form Functionality

Thanks Sanford Whiteman,

But i am not able to find that style any where like not in the template or form level.

Can you help me  find that specific style so that i can correct it.

Thanks a lot for find that issue.

SanfordWhiteman
Level 10 - Community Moderator

Re: Wired Form Functionality

It's an inline STYLE tag, line 219 if you View Source.

Ravi_Ansal2
Level 6

Re: Wired Form Functionality

Thanks Alot