• Resolved jbijman

    (@jbijman)


    The second dropdown menu shows instantly since the last update. Tried everything, somebody any idea?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @jbijman,
    Please add this CSS code in your additional CSS field. 
    ul.dropdown-menu {
    float: none!important;
    }
    Thanks

    Hello @jbijman,
    If you are still getting issue, Can you please share a screenshot along with the site URL. I can find easily that issue.

    Thanks

    Thread Starter jbijman

    (@jbijman)

    Hi,

    It looks like the problem is in this code:

    /* Menu Toggle */

    .navbar-toggle {
    border-radius: 0;
    }
    @media only screen and (max-width: 767px) and (min-width: 480px)
    {
    .open{
    }
    }
    @media (min-width: 768px) {
    .dropdown .dropdown-menu{
    display: block;
    opacity:0;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    }
    .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    }
    }

    I disabled it and now it’s working proparly again.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Dropdown menu shows instantly’ is closed to new replies.