Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #432014

    I want the mobile menu to fold out from the bottom to the top. Can I achieve this with CSS?

    Also, is it possible to disable the animation that occurs when opening the mobile menu? So the mobile menu opens right away?

    http://i.imgur.com/pvXBcq4.pnghttp://i.imgur.com/pvXBcq4.png

    #433216

    Hi crewneck!

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #433561
    #434769

    Any ideas?

    #435683

    Hey!

    Try adding this code to the Quick CSS:

    #mobile-advanced{
    	-webkit-transition:  none;
    	-moz-transition:     none;
    	transition:          none;
    	
    	right: 0;
    	bottom: -100%;
    	top: auto;
    }
    
    .show_mobile_menu #mobile-advanced{
    	-webkit-transform:   translate(0, -100%);
    	-moz-transform:      translate(0, -100%);
    	transform:           translate(0, -100%);
    }
    
    .avia_transform3d .show_mobile_menu #mobile-advanced{
    	-webkit-transform:   translate3d(0, -100%, 0);
    	-moz-transform:      translate3d(0, -100%, 0);
    	transform:           translate3d(0, -100%, 0);
    }

    Cheers! 
    Josue

    #437855

    Thanks!

    #437857

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.