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.
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
Hi Josue!
That worked perfectly thanks again for your help.
Laure
You are welcome Laure, glad we could help :)
Regards,
Josue