Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #735402

    Hi,

    Where can I find the slide in effect of the mobile menu? I would like it to slide from the top not from top right…

    Also is it possilbe that the menu slides from bottom of the headermenu? (appr. 88px) so that i can use the same logo for everything.

    Thank you
    Regards

    #736531

    Hey!

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    ul#mobile-advanced {
        padding-top: 0;
        margin-top: 100px;
    }
    

    Best regards,
    Yigit

    #736615

    Thx Yigit

    It worked for showing it 100px lower, thx.

    Is there a CSS sollution to slide it from the top not from right (at the moment)…

    Regards
    Ananda

    #737755

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #mobile-advanced { right: -100%; }
    #mobile-advanced {
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0);
    }
    .avia_transform3d .show_mobile_menu #mobile-advanced {
        -webkit-transform: scale3d(1);
        transform: scale3d(1);
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    

    Best regards,
    Yigit

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