Why doesn't my mobile menu appear on the Debut theme?

Hi community !

I just realized that the menu of my site does not appear when browsing on mobile. Also, I feel like the whole header acts like a home button…

I made some code modifications, to change the header’s background color, and to make it sticky when scrolling so I wonder if the problem is not from here.

Does anyone have an idea where the problem come from ?

url : https://dtgmtl.com/

Thanks

Seems like you just have it hidden. Add this to the bottom of your theme.css.liquid file:

@media(max-width: 750px){
.site-header__menu {
    display: block;
}
}
1 Like

It worked ! Thank you so much man :slightly_smiling_face: