mobile dropdown removal

Hello,

I was seeking help or direction in being able to removing the dropdown feature for mobile view. I want to keep it static like the desktop version. Is there a way to reach that direction? I have the achieved effect on desktop but not mobile.

link for web preview - https://2coq17paf3c558hv-79080456483.shopifypreview.com

Thank you

Hi @setsxs , unfortunately this is not built in to the Publisher theme you are using. A custom code solution is still possible, of course, but keep in mind that the mobile navigation you are seeing is pretty industry standard so users are very used to looking for that mobile menu icon to find links.

Hi @setsxs

Do you mean the hamburger menu?

You might end up with a menu that’s not user-friendly and could be squeezed on smaller screens. This is possible to fix, but it would require a developer.

Hi @setsxs ,

Please go to Actions > Edit code > Assets > base.css file and paste this at the bottom of the file:

@media screen and (max-width: 989px) {
.header-wrapper .header {
    grid-template-areas:
        "left-icons heading icons"
        "navigation navigation navigation";
}
    header-drawer {
        display: none;
    }
.header--top-center>.header__search {
        display: inline-flex;
    }
.header__inline-menu {
        display: block;
    }
.header--top-center *>.header__search {
        display: none;
    }
}