Hide burger menu on mobile

Hi I need to hide the burger menu on mobile and I am struggling to do this, I have removed the menu items on the desktop view but can’t seem to do the same for mobile with the burger menu.

Can you please help.

hey there

You may use this css code to hide it:

@media only screen and (max-width: 992px){
.open-responsive-menu {
display: none;
}
}

Thanks for the help that has worked.

Nice to hear, I will mark this case as resolved