Site logo

Archived topic

Menú desplegable móvil

1 reply · Started by Anny on March 26, 2021

Viewing posts 1–2 of 2

Hola buenas, quería saber como puedo mover el desplegable de la versión móvil de navegación, las tres rayitas hacia la izquierda, y que de está manera el nombre del sitio web quede en el medio.

También me gustaría desactivar la parte de abajo donde se pone el copyright.

Muchas gracias por vuestra ayuda.

Hi there,

1. Menu layout - try this CSS:

#mobile-header .navigation-branding {
  margin-left: 20px;
}

#mobile-header .menu-toggle {
  order: -1;
  margin-right: auto;
}

/* reduce branding size on small device */
@media (max-width: 380px) {
  .navigation-branding .main-title {
    font-size: 20px;
  }
  #mobile-header .menu-toggle {
    margin-right: unset !important;
  }
  #mobile-header .navigation-branding,
  #mobile-header .navigation-branding p {
    margin-left: 0px;
  }
}

I have adjusted it so on very small devices the branding type reduces in size and aligns left.

2. You can remove the Footer using the Layout Element:

https://docs.generatepress.com/article/layout-element-overview/

This archived topic is closed to new replies.