Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #180353

    Hi! How can i make the normal submenu (not megamenu) disappear slower? it tends to get hidden too soon to let the user click the links.

    Thanks in advance

    #180402

    Hey mariocarabotta!

    Open js/avia.js.

    Go to line 696:
    sublist.stop().animate({opacity:0}, function()

    Replace it by this:
    sublist.stop().delay(300).animate({opacity:0}, function()

    That will add a delay of 300 milliseconds before disappearing. You can change that number if you want it slower or faster.

    Best regards,
    Josue

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Submenu hidden delay time’ is closed to new replies.