For anyone else looking to accomplish this I’ve been able to speed up the menu by editing the theme-scripts.js file in the themes/dante/js folder and looking for the following string ” defaults.event==’hover’ ”
You should find the following code;
var config = {
sensitivity: 2,
interval: 100,
over: megaOver,
timeout: 400,
out: megaOut
};
Interval is the rate at which a hover is checked and submenu appears so decreasing it will speed up the menu showing up, timeout is the delay that the menu remains open and decreasing it will speed up it vanishing.
Hope this helps someone.