How can I adjust my mobile side menu logo size?

My menu button on the left of my mobile is really small, i need to make it bigger and the menu wider across the screen please help, pictures below

@Grateful1 - can you please share your site link?

1 Like

thanks

@media (min-width: 768px) and (max-width: 991.98px) {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  @media (min-width: 576px) and (max-width: 767.98px) {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  @media (max-width: 575.98px) {
    padding-top: 20px;
    padding-bottom: 20px;
    .box-img1 {
      margin-bottom: 30px;
    }
    @media screen and (max-width:749px){
.menu_moblie .menuleft .iconmenu span{width: 23px !important;}
.box_contentmenu{width: 100%;}
}
  }
}
@keyframes smoothFadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@media screen and (max-width:749px){
.menu_moblie .menuleft .iconmenu span{width: 23px !important;}
.box_contentmenu{width: 100%;}
}

it worked thanks Suyashi

@media screen and (max-width:749px){
.menu_moblie .menuleft .iconmenu span{width: 23px !important;}
.box_contentmenu{width: 100%;}
}