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.
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
Thnx Lisia,
unfortunately the menu button is still not shown.
Do you have any other solution for my problem?
Best regards,
Frederique
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