Make mobile drawer navigation only 75%

Hi,

Currently my mobile navigation is full width, I’d like it to only open say 75%, my site is https://scntwrld.com

Thank you

Hello there,

Here is the code that you need to add in the end of theme.css file to reduce the total width of Drawer on mobile only.

@media only screen and (max-width: 767px){
#NavDrawer.drawer--left {
  width: 75% !important;
}
}

Once you add the code, then you will get these results: