Hello,
Consider adding the following JS Code at the bottom of the Page just after the js/functions.js JS File Linking:
jQuery(document).on( 'ready', function(){
if( SEMICOLON.isMobile.any() ) {
if( jQuery().superfish ){
jQuery('#primary-menu > ul, #primary-menu > div > ul,.top-links > ul').superfish('destroy').addClass('windows-mobile-menu');
} else {
jQuery('#primary-menu > ul, #primary-menu > div > ul,.top-links > ul').addClass('windows-mobile-menu');
console.log('menufunctions: Superfish not defined.');
}
jQuery( '#primary-menu ul li:has(ul)' ).append('[](#)');
jQuery( '#primary-menu ul li.sub-menu' ).children('a.wn-submenu-trigger').click( function(e){
jQuery(this).parent().toggleClass('open');
jQuery(this).parent().find('> ul, > .mega-menu-content').stop(true,true).toggle();
return false;
});
}
});
This will enable a functionality which will enable the Dropdown Arrow to Open/Close the Sub Menus.
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.