Okay
  Public Ticket #3645497
Off-canvas menu
Closed

Comments

  • dima_amid12 started the conversation

    Is it possible to customize off canvas menu size when it's coming from right side?

  •  1,077
    ThemeNectar replied

    Hey,

    You can make that change by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:

    @media only screen and (min-width: 1000px) {
      #slide-out-widget-area.slide-out-from-right-hover {
        transform: translate3d(100%, 0, 0);
        -webkit-transform: translate3d(100%, 0, 0);
        width: 40%;
      }
    }
    

    Cheers