Hello,
This is Definitely Possible. Follow the steps below:
- Delete or Comment out all the instance of the following function in the js/functions.js File:
SEMICOLON.header.superfish();
- Add the .d-block class to the <ul> Tags holding the Sub-Menus. Example:
- [Home](index.html)
- [Home - Corporate](index-corporate.html)
...
...
For the Sub Menu to expand only on an Active Page, you will need to convert your Page into PHP and then detect the active Page URL and apply your codes accordingly.
Find the following code in the js/functions.js File:
$('body.side-header #primary-menu:not(.on-click) > ul').superfish({
popUpSelector: 'ul',
delay: 250,
speed: 350,
animation: {opacity:'show',height:'show'},
animationOut: {opacity:'hide',height:'hide'},
cssArrows: false
});
and change the value of the speed Setting according to your needs.
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.