Hello, I am trying to remove the hamburger menu from the mobile version of my site, and have the mobile version look exactly like the desktop with the menu on the left in the picture. I added custom code to remove the hamburger:
@media screen and (max-width: 990px) {
header-drawer { display: none !important;}
.header–middle-left .header__inline-menu { margin-left: 0; display: block !important;}
.header__heading, .header__heading-link { justify-self: center !important; grid-area: initial !important;}
}
But I can not get the desktop menu to appear. Any ideas?
Desktop:
Mobile (No text for menu):
Thank you!



