Home Forums Basel support forum Change the menu in mobile view, so that it opens on the right left side

Change the menu in mobile view, so that it opens on the right left side

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

    ggore
    Participant

    Hey, I wanted to ask how to change that by clicking on the menu bar on mobile (which is on the right side), that the menu opens as well on the right side. Right now it opens at the left side and I think its confusing for the user.

    Thank you!

    #18318

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to change the position of the mobile navigation menu

    .mobile-nav {
        left: auto;
        right: 0;
        transform:translate3d(270px, 0, 0);
        -webkit-transform:translate3d(270px, 0, 0);
        -ms-transform:translate3d(270px, 0, 0);
          -sand-transform:translate3d(270px, 0, 0);
    
    }
    
    .act-mobile-menu .mobile-nav {
        transform:translate3d(0, 0, 0);
        -webkit-transform:translate3d(0, 0, 0);
        -ms-transform:translate3d(0, 0, 0);
        -sand-transform:translate3d(0, 0, 0);
    }

    Regards

    #18321

    ggore
    Participant

    thank you! it worked!

    #18325

    Artem Temos
    Keymaster

    You are welcome!

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Change the menu in mobile view, so that it opens on the right left side’ is closed to new replies.