How can I remove hamburger menu
I chose a template, complete site build and then noticed on the tablet and mobile version there is a hamburger menu in the header. I want to remove it as I have no use for it but after trying everything I could think of, I just couldn't find a way to remove it.
What other options do I have that won't effect all of the work I've done. I just want to hamburger menu gone!
Answers
-
Hi @MeToo, see if this brief video helps. There are a few ways to go about this and in my video I review the non-CSS or custom option. Good luck!
0 -
Hey @MeToo, just thought I would pop in here and show you the CSS way of doing this. It's pretty simple and fast. Here is the code snippet you can use yourself.
*[dmtemplateid="mobileHamburgerLayout"].runtime-module-container *.layout-drawer-hamburger
{
display: none !important;
}0