mega menu

Hi,

You will need to change it to collapse on load.
Add two containers, one for the categories and one for the sub categories. Show them on all pages, then add mouseOut and mouseIn events for the buttons.

For example, you should expand the category menu in the mouseIn event for the All Categories button.
Similarly, add code to collapse the category menu in the mouseOut event for the All Categories button.

Then simply repeat this method with the rest of the category options.

export function catBtn_mouseIn(event, $w) { 
    $w("#categoryBox").expand();
}

export function catBtn_mouseOut(event, $w) { 
    $w("#categoryBox").collapse();
}