Archived topic
Secondary Navigation disappears on mobile pones
3 replies · Started by steffen-bachmann on May 15, 2018
I just found the effect, that the secondary navigation disappears on mobile phones (see https://no-brain-no-pain.de/wp/
).
How can i make it visible on mobile devices?
Greetings
Steffen Bachmann
Hi there,
Replace this CSS you've added:
body.mega-menu-primary button.menu-toggle {
display: none;
}
with this:
body.mega-menu-primary button.menu-toggle:not(.secondary-menu-toggle) {
display: none;
}
Let me know.
I found an other solution. This is what appears, when i'm shrinking the display size:
@media (max-width: 768px)
.secondary-navigation ul {
display: none;
}
I just inserted in the customizer in additional css that:
@media (max-width: 768px)
.secondary-navigation ul {
display: block;
}
This is working fine and i hope this will be a long time solution. :)
Greetings
Steffen
Glad you found a solution!