Okay
  Public Ticket #1364813
mobile menu in RTL mode
Closed

Comments

  • Barak started the conversation

    Hi

    the site is still under development server, but if you see this link:

    http://p1820-38-2946.s38.upress.link/he/

    in mobile - you will able to see that the menu is not presented in the right way:

    1. it need to fly from right and not from left

    2. when it stop (after the flying animation) it needs to be align to the right and now it is stack somewhere in the middle...

  • [deleted] replied

    Hi baraklevy,

    Please before we continue with next step consider reading the article we wrote about How to add Custom CSS to your site. Then please paste the code below.

    .mobile-menu-wrapper.mobile-menu-slide{
        right: 0 !important;
    }
    .mobile-menu-wrapper.mobile-menu-slide {
        -webkit-transform: translate3d(100%,0,0) !important;
        transform: translate3d(100%,0,0) !important;
    }
    .mobile-menu-open .mobile-menu-wrapper.mobile-menu-slide {
        -webkit-transform: translate3d(0,0,0) !important;
        transform: translate3d(0,0,0) !important;
    }

    Thank you.