Mobile menu on high resolutions

Hi! just noticed today that my menu became “mobile Hamburger” menu also on high resolutions… at 3.000 and above …

this is the site

www.pma.it

ist there any css to avoid this? tnks!

Hello Mauro,

Thanks for writing in!

That is not supposed to happen. I have investigated your site and it turns out that you added this custom css:

@media (min-width:2980px){
    .x-nav-wrap.desktop{
        display:none
    }
    .x-nav-wrap.mobile{
        display:block
    }
    .x-nav-wrap.mobile.x-collapsed{
        display:none;
    }
    .masthead-inline .x-btn-navbar{
        display:block;
        float:right
    }
    .masthead-stacked .x-btn-navbar{
        display:inline-block
    }
    .x-recent-posts .h-recent-posts{
        color:rgb(16,169,166);
    }
    

Please remove this custom css to resolve your issue.

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