• I have a simple question. How do I change the speed of a transition when I hover a menu item to open up a sub menu item? It takes too long for my liking and I want to speed it up. rmwindowwashing.com. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • There is no css problem.
    The drop down menu is open from js script
    Try this script

    COPY and PASTE in js script

    $('.main-navigation-responsive .sub-toggle').click(function() {
        $(this).parent('.menu-item-has-children').children('ul.sub-menu').first().slideToggle('fast');
        $(this).children('.fa-angle-right').first().toggleClass('fa-angle-down');
    });
    Thread Starter rmwashing

    (@rmwashing)

    Thank you for the reply. What I am looking to see if I can change (and it’s not really that important for me, just curious to see if I can change it) is how long it takes for the sub menu to go away after my cursor has left the ‘Services’ tab. It seems to take about 1 second to go away. I just want to try and speed that up. Is that possible?

    I tried that script that you sent and it appeared to be the same. Unless I pasted that js script somewhere I shouldn’t have. I pasted it into the ‘custom.js’ file. Thanks for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sub Menu Transtion Speed’ is closed to new replies.