Suppressing menu

Hey, if I have a one page site (using Lander theme) and I don’t want the menu icon to show up, is there a CSS fix to suppress that?

div.togglebox { display: none; }

maybe

Try unchecking Show in navigation
Screen Shot 2020-11-16 at 11.22.05 AM

Thanks! Neither worked, but I appreciate the help…

Try

#drop {
display: none;
}

That did it, thanks!

Actually, on exporting, it works for mobile, but it still says “menu” when viewed on a laptop (although without the “+” sign)…

ok, I actually played around with it this time rather than guessing …
I added the following to get it to disappear, …

div.togglebox {
  display: none !important;
}

Awesome, thanks so much!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.