Okay
  Public Ticket #2729808
Mobile Menu / slide form left
Closed

Comments

  •  14
    bluegraphics started the conversation

    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

  • [deleted] replied

    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.