• I would like to remove the ease out transition off the Navigation menu but I can’t figure out how to do that. I am using the Theme: Basically.

    Here is the website:
    https://www.oludar.com/html/

    If you hover over the 2nd link in the nav, “menswear” you will see the subnav roll out and then it rolls back by easing out. This is causing an error in Chrome so I would like to remove the transition all together.

    Help!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Meem,

    The navigation effect is been been triggered in your script.js you would need to edit this :-

    // Drop down menus
    $j(".main-navigation ul li ul, .secondary-navigation ul li ul").parent().addClass("arrow");
    $j(".main-navigation ul li, .secondary-navigation ul li").hover(function(){
    $j(this).addClass("hover");
    $j(this).find("ul:first").slideToggle("fast");
    }, function(){
    $j(this).removeClass("hover");
    $j(this).find("ul:first").hide("slow");
    });
    });

    The .hide(“slow”) is what is possibly causing the issue if its changed to .hide() it would probably fix your problem

    Thread Starter meemsnyc

    (@meemsnyc)

    Ohhhhh, THAT WORKED.

    THANK YOU SOOOOOO MUCH!!

    No problemo glad it helped

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove Navigation Transition for Theme: Basically’ is closed to new replies.