Site logo

Archived topic

Poner el Logo encima del Menu en movil

1 reply · Started by carlos on August 23, 2021

Viewing posts 1–2 of 2

Buenas,

Me gustaria que el Logo estuviera por encima del menu en formato movil, he visto que hay en la biblioteca de generatepress themes que lo tienen pero este que uso yo no lo tiene.

https://www.dropbox.com/s/45iy1i65fe0uxiu/Screenshot_2.png?dl=0

Adjunto imagen de como esta ahora y como me gustaria que estuviera

http://adretiqu-cp45.wordpresstemporal.com/pruebas/

Un saludo

Hi there,

try this CSS:

@media(max-width: 420px) {
    .site-logo {
        flex: 1 0 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .mobile-menu-control-wrapper {
        margin-left: auto;
        margin-right: auto;
    }
}

Adjust the 420px in the @media(max-width: 420px) for where you want the style to change.

This archived topic is closed to new replies.