(mobile) menu dissappeared

Hi there!

I’ve got a problem with my (mobile) menu… Once the screen gets below a certain width (for instance on mobile/tablet) the menu seems to entirely dissappear…

I’ve looked but couldn’t find the issue. Could you please help me find a solution?

Best regards.

Hi @FerryTimmer,

Please find this custom CSS:

@media (max-width: 979px) {
    .masthead {
        display:none !important;
        position: relative;
        width: auto;
        background-color: #ffffff
    }
}

And change to this:

@media (max-width: 979px) {
    .masthead {
        width: 100%;
        background-color: #ffffff
    }
}

Hope it helps :slight_smile:

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