• Resolved lsturdy

    (@lsturdy)


    I’m having a problem with the drop-down menu navigation when users are viewing our website in Internet Explorer with their Compatibility View settings turned on.

    Initially, the drop-down menus were not appearing at all when users moused over the navigation bar. We used the code from this inquiry –https://www.ads-software.com/support/topic/sub-menu-not-workin — and now the drop-down menu navigation will appear when you mouse over it, but most of the drop-down menu is hidden behind the slider.

    Is there a way to make the drop-down navigation work well for IE users who have their browsers set to compatibility mode?

    https://www.buckner.org

Viewing 10 replies - 1 through 10 (of 10 total)
  • Oh how I hate compatibility mode..

    Try adding this to your custom css box in theme options:

    #nav-main ul.sf-menu {
    z-index: 1000;
    }

    Kadence Themes

    Thread Starter lsturdy

    (@lsturdy)

    Added the code, but it’s still not working.

    Try adding this and the top code:

    .sf-menu li:hover ul,
    .sf-menu li.sfHover ul {
    z-index:999;
    }
    Thread Starter lsturdy

    (@lsturdy)

    We added that and the first code you posted, but now the drop downs are back to not displaying at all.

    ok, try adding this to the mix and make sure you leave in the code you got from the other forum post.

    #nav-main {
    position: relative;
    z-index: 10000;
    }

    Thats working for me.

    Thread Starter lsturdy

    (@lsturdy)

    This code…

    The CSS modification:

    .sf-menu li:hover ul,
    .sf-menu li.sfHover ul { display: block; }

    … plus the code you just posted, correct?

    The drop-downs are back to displaying again, but still being mostly covered up by the slider.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Which version of IE are you trying to replicate in compatibility mode? Note that compatibility mode is temperamental, if you want accurate issues you should try to use the actual browser.
    https://browserstack.com

    Thread Starter lsturdy

    (@lsturdy)

    We are looking at our website in compatibility mode both in IE 8 and IE 10 — in the actual browsers. IE 8 is installed on our XenApp Citrix desktop and IE 10 on the actual computer desktop (if that makes sense…).

    In both versions, the drop-downs don’t function properly when compatibility mode is switched on.

    I have tested this and it seems to work in ie:8 compatibility mode…

    #nav-main {
    position: relative;
    z-index: 10000;
    }
    .sf-menu li:hover ul,
    .sf-menu li.sfHover ul {
    z-index:999;
    display:block;
    }

    And I’m now totally in the mood to rant about the developers of IE

    Kadence Themes

    Thread Starter lsturdy

    (@lsturdy)

    It worked! Thank you so, SO much!!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘problems viewing drop-down navigation in Internet Explorer compatibility mode’ is closed to new replies.