Hi,
What I would suggest is similar to what you have.
.mob-menu-header-holder {
background-color: transparent!important;
}
.mobmenu .headertext {
display: none!important;
}
If I understood correctly you hide to hide the burger icon after scrolling down?
-Takanakui
I like to keep the hamburger icon after scrolling down, and now it does! What I’d like to do is to remove the mobile header so that there is only the hamburger icon:
Setting the background-color to transparent made the header no longer visible when scrolling down the page – which is good. (If i set the background color to any color the mobile header would be visible on top at all times when scrolling).
However, there seems to be some sort of padding or space that the mobile menu uses on top of/before the WordPress header. After setting the background color to transparent I now get about a 10 px box on top of my header. Here marked in yellow:

I can set the body background color to match my header and not use yellow obviously, but that will still make it fill the the full width of the browser even if my header is set to a fixed smaller width.
I tried to remove padding/size of the mobile menu header, but can’t seem to make it disappear.
Thanks for your help!
Nixie
Add this code to the custom css option and check again.
.mob-menu-header-holder {
height: 0px!important;
}
-Takanakui
Thank you, Takanakui!
That removed the mobile header, but kept the hamburger icon.
I really appreciate the quick response and your awesome plugin!
Regards
Nixie
It was missing this code.
#dropdown-nav-wrap, #dropdown-subnav-wrap {
display: none!important;
}
That should sort it.
-Takanakui
No good, that just killed the Genesis Responsive Navigation!
It worked just fine not using that code!
Thanks!
Maybe I got it wrong, if it’s just the hamburger icon from genesis add this code.
#dropdown-nav .responsive-menu-icon{
display: none!important;
}
Not sure if you want to remove that part that says “Navigasjon”
Let me know.
-Takanakui
@nixiemartyn Let me know the result. Will close the topic for now.
-Takanakui
I hid the the whole responsive navigation from Genesis / the area that says navigation. So I am only using Mobile Meny at the moment and it looks great!
Thank you for your help as always, Takanakui!
Regards
Nixie
No problem. Glad it’s sorted.
-Takanakui