• Resolved fpapavoine

    (@fpapavoine)


    I have recently updated wordpress and now the menu button is not available anymore in the mobile version of my site.

    How can I fix this problem?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Anonymous User 16453565

    (@anonymized-16453565)

    hey, @fpapavoine

    To do that, go to Appearance → Customize → Additional CSS and enter the following code:

    @media (max-width: 1000px)
    .nav-toggle:hover {
    display: block !important;
    }

    Thanx.

    Thread Starter fpapavoine

    (@fpapavoine)

    Thnx for the quick response!

    I only get the following error: expected LBRACE at line2 col 1.

    I really don’t have any experience with CSS.. sorry!

    @media (max-width: 1000px) {
    .nav-toggle:hover {
    display: block !important;
    }
    }

    Hello, you have to add {….}
    Best regards, lisia

    Thread Starter fpapavoine

    (@fpapavoine)

    Thnx Lisia,
    unfortunately the menu button is still not shown.
    Do you have any other solution for my problem?

    Best regards,

    Frederique

    Theme Author Anders Norén

    (@anlino)

    Hi @fpapavoine,

    The plugin “supsystic-gallery-pro” is adding styling the “.hidden” class selector, preventing Fukasawa from making the navigation toggle visible on mobile. You can fix this by deactivating the plugin.

    Another solution is to add the following CSS to the Customizer → Additional CSS field:

    @media (max-width: 1000px) {
    button.nav-toggle {
    display: block !important;
    }
    }

    — Anders

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘mobile menu button not shown’ is closed to new replies.