• Resolved grey4radar

    (@grey4radar)


    Select boxes are broken since updating to Version 1.14.9 from 1.14.8.1.
    No other changes to the site, Forminator is the only Plugin installed and everything worked OK before update.
    Now, when I click on a select box there is a 31px gap introduced between the select box and the dropdown options.
    I can see that this CSS rule is the offender.

    .select2-container .forminator-dropdown--default.select2-dropdown--below {
    	margin-top: 31px;
    	border-width: 0 1px 1px 1px;
    	border-radius: 0 0 2px 2px;
    }

    included from /plugins/forminator/assets/forminator-ui/css/src/form/forminator-form-default.full.min.css

    If you uncheck the margin-top: 31px; in Inspector it is fixed.
    or
    If I edit /plugins/forminator/assets/forminator-ui/css/src/form/forminator-form-default.full.min.css and change it to:

    .select2-container .forminator-dropdown--default.select2-dropdown--below {
    	margin-top: 0px;
    	border-width: 0 1px 1px 1px;
    	border-radius: 0 0 2px 2px;
    }

    … then it is also fixed.

    • This topic was modified 3 years, 8 months ago by grey4radar.
    • This topic was modified 3 years, 8 months ago by grey4radar.
    • This topic was modified 3 years, 8 months ago by grey4radar.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Dmytro – WPMU DEV Support

    (@wpmudevsupport16)

    Hi there @grey4radar

    Indeed, this is a known issue and has been reported to the developers.

    It will be fixed in an upcoming update.

    In the meantime though, instead of editing a plugin file, you can patch the issue by overriding it with the following CSS to the Customizer, or your theme’s custom CSS area (if any), or a custom CSS plugin:

    .select2-container .forminator-dropdown--default.select2-dropdown--below {
        margin-top: 0 !important;
    }

    Cheers!
    Patrick

    Thread Starter grey4radar

    (@grey4radar)

    Thanks Patrick.
    The patch works.
    Looking forward to the upgrade.

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @grey4radar

    I hope you are doing well.

    We are already working to fix it, kindly keep the plugin updated.

    For now, I’m marking this ticket as resolved, feel free to ping us any time you need.

    Best Regards
    Patrick Freitas

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Select boxes broken.’ is closed to new replies.