• Resolved justravis

    (@justravis)


    WordPress v5.8.2
    Forminator v1.15.9

    In both Chrome (v96.0.4664.110) and FireFox (v95.0.2), dropdown menu options appear underneath dropdown menus on the next row.

    In FireFox, most of the dropdown menus display options vertically above the dropdown menu.

    Suggestions?

    THANK YOU!

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Nebu John – WPMU DEV Support

    (@wpmudevsupport14)

    Hi @justravis,

    I hope you are doing great today.

    I checked this on a test website but could not replicate the issue. I suspect if some CSS from the theme or a plugin is conflicting and causing the issue.

    Can you please check if the following CSS helps with resolving the issue?

    .forminator-select.forminator-select-dropdown-container--open {
        z-index: 999999 !important;
    }

    I hope that helps.

    Kind Regards,
    Nebu John

    Thread Starter justravis

    (@justravis)

    Hi @wpmudevsupport14,
    The given selector did not seem to apply. Below is a selector that technically applied, but it did not bring the open select boxes to the top.

    .forminator-select.select2-container--open {
        z-index: 999999 !important;
    }

    Suggestions?

    HAPPY NEW YEAR,

    Travis

    Plugin Support Kris – WPMU DEV Support

    (@wpmudevsupport13)

    Hi @justravis

    Please set up z-index with this value:
    99999999 this should help.

    Kind Regards,
    Kris

    Thread Starter justravis

    (@justravis)

    Hi @wpmudevsupport13,
    I appreciate you joining the discussion. Changing the value of the open select menu did not resolve the issue.

    The z-index of the closed select menus turned out to be the problem.

    .select2-container {
        z-index: 99999999;
    }

    This code resolved that problem:

    .forminator-select.select2-container 
    {
        z-index: initial;
    }

    I figured out why menus sometimes slide up instead of down too.

    THANKS!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Dropdown Menu Options Appear Underneath Other Dropdown Menus’ is closed to new replies.