Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #251527

    Hi,

    I have a single page that with color sections that correspond to sub-menu items. When you click on a sub-section, the parent menu doesn’t remain highlighted to indicate where you are in the site. Could you please have a look and let me know if I am missing something?
    Here is the url: http://goo.gl/h8w28r . Thanks very much for your help.

    #252442

    Hey Laure!

    Open js/avia,js and look for these lines (227-229):

    if (active.parent('.dropdown-menu').length)  {
      active = active.closest('li.dropdown').addClass(this.options.applyClass)
    }

    Replace them by:

    if (active.parent('.sub-menu').length)  {
      active = active.closest('li.dropdown_ul_available').addClass(this.options.applyClass)
    }

    Regards,
    Josue

    #252450

    Hi Josue!
    That worked perfectly thanks again for your help.
    Laure

    #252452

    You are welcome Laure, glad we could help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Main menu not highlighted when submenu is active’ is closed to new replies.