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.
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.
Solved! Go to Solution.
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.
Please post the actual URL instead of just a screenshot, so I can see the bug in action.
Here You go Sanford:
Best Practices: Modeling Complex Products
Try selecting that field after the POP up before clicking on any other Field.
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.
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.
It's an inline STYLE tag, line 219 if you View Source.
Thanks Alot