Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hello Awesome People at Laborator,
Hope you are all well.
Question is about the mobile menu / sliding from left.
Can the menu and submenus, react/unfold to click and not to hoover?
please let me know if this is possible, thanks
Dear bluegraphics,
Sorry for the delay of answer as other support members couldn't handle your ticket.
Thank you for your kindness, sure you can achieve this by adding this code in functions.php of child theme (preferably):
add_filter( 'body_class', function( $classes ) { $classes[] = 'mobile-menu-expand-on-click'; return $classes; } );Please try it and let me know how it works for you.