Needs some fixes with Gravity Forms 2.5
-
Please run another test with Gravity Forms 2.5.
https://gformtest-jf.freshy.site/contact/You can see a few issues that need to be adjusted. First is the field errors. You can see for some reason the top padding is being set to 0 on each field error: https://i.imgur.com/MUN2Yyp.png
It seems to be something that Gravity Forms is doing themselves, but I’m not sure why.
—
There also seems to be a minor positioning issue with the main error message, since the text isn’t vertically centered with the X icon. Seems to be a result of Divi’s bottom padding on the H2.
—
Lastly, I noticed that you didn’t update your code to take into consideration the new way that Gravity Forms deals with columns. This is now causing the right edge to be pulled out 16px too far: https://i.imgur.com/EP6vLQT.gif
This is due to your rule of:
@media (min-width: 641px) { body .gform_wrapper .gform_body { width: calc(100% + 16px); } }
—
You also no longer need some of the rule with the
li
elements, since they no longer use list item elements to wrap their fields.—
I also think your width of 8em could be removed from the date picker class, since it causes the yyyy placeholder to get cut off. Similarly, I’m not sure your 6px of right padding is needed on some of the date fields. Nor is the
.gfield_time_hour i
rule necessary anymore, as far as I can tell.—
And your rule of
body .gform_wrapper li.hidden_label .ginput_container>* { margin-top: 12px }
Needs to be updated since GF 2.5 no longer uses the
li
—
Please go through each rule and see what is still needed. Thanks!
- This topic was modified 3 years, 6 months ago by .
- This topic was modified 3 years, 6 months ago by .
- This topic was modified 3 years, 6 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘Needs some fixes with Gravity Forms 2.5’ is closed to new replies.