Archived topic
Desactivar menú secundario en móvil
3 replies · Started by Pedro on July 1, 2020
Hola! Me gustaría desactivar/ocultar el menú secundario en la versión móvil.
Intenté hacerlo con esta guía: https://docs.generatepress.com/article/disable-secondary-navigation-mobile-menu/
Sin embargo, en vez de ocultarlo, lo que hace es mostrar todos los elementos del menú.
¿Podrían ayudarme con esto por favor?
¡Gracias!
Hi there,
That documentation is for preventing the secondary navigation to turn into toggle - it's useful when you add things like social icons.
If you simply want to hide the secondary navigation, then try this CSS:
@media (max-width: 768px) {
.secondary-navigation {
display: none;
}
}
Hola Leo! Funcionó perfecto, gracias!
No problem :)