Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #867537

    Franz
    Participant

    Hello Again X Team!

    The website in question is http://staging.markuppros.com/cspv3/. It’s my staging environment.

    The issue is this. On the mobile menu, to expand the sub-menus, you need to press the down arrows. Is there anyway that if you click the word “Services”, for example, it can also open the sub-menus?

    Appreciate the help. Sending my login credentials shortly. Thanks!

    #867542

    Franz
    Participant
    This reply has been marked as private.
    #868301

    Nabeel A
    Moderator

    Hi there,

    Thanks for writing in! To achieve this, please add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript

    jQuery(document).ready(function($){
    	$('.menu-item-has-children').click(function(){
    		$(this).find('.sub-menu').toggle();
    	});
    });

    Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

    #868331

    Franz
    Participant

    You’re My Angel!

    Thanks Nabeel!

    #868592

    Prasant Rai
    Moderator

    Your satisfaction is a great compliment for us.