Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #263501

    Futurised
    Participant

    Can you please get someone to fix the CSS/jquery that causes the navigation to instantly close when changing between submenus?

    This is an issue with your demos as well, and with the theme on my site.

    It affects usability of navigation so is pretty important to fix, I believe.

    Here is a video demonstrating.

    http://screencast-o-matic.com/watch/cohnV1feWH

    firefox 37.0.2 (latest version)
    chrome 42.0.2311.90

    http://www.futurised.com is running the child theme, and X 3.2.3.

    Clint

    #263574

    Darshana
    Moderator

    Hi there,

    Thanks for writing in! We have identified this issue and will patch this issue within our latest release.

    In the meantime, you can add the following CSS workaround into your Customizer, Custom > CSS section using the menu Appearacne -> Customize to resolve this issue.

    
    .x-navbar .desktop .x-nav .sub-menu > li:hover ul { display: block; }

    Hope that helps.

    #263621

    Futurised
    Participant

    Hi,

    That’s great it has been looked into it. Sadly that css fix is not working for me. I tried !important as well, and I tried with chrome cache killer enabled to be sure the new css would load.

    .x-navbar .desktop .x-nav .sub-menu > li:hover ul {
    display: block !important;
    }
    .x-navbar .desktop .x-nav .sub-menu > ul:hover li {
    display: block !important;
    }

    #263624

    Rue Nel
    Moderator

    Hello There,

    How about we try this code in your customizer, Appearance > Customize > Custom > CSS

    .x-navbar .desktop .x-nav li:hover > ul.sub-menu {
        display: block;
    }

    Please let us know if this works out for you.

    #263628

    Futurised
    Participant
    This reply has been marked as private.
    #263633

    Rue Nel
    Moderator

    Hello Again,

    Please try the code we gave in our previous reply.

    Thank you.

    #263637

    Futurised
    Participant

    Just noticed your previous reply. I tried it. YES IT WORKS!!!

    .x-navbar .desktop .x-nav li:hover > ul.sub-menu {
    display: block;
    }

    Thanks very much.

    #263638

    Christopher
    Moderator

    You’re welcome.