Change header and logo size on home page

I understand how to change the header and logo size in general.

.d-header #site-logo {
  max-height: 140px;
}
.d-header {
    height: 150px;
}

was used in the CSS section of admin. But I am wondering how to modify the size only on the home page.

Try to use this target in your css .navigation-topics .logo-big instead of .d-header #site-logo

2 Me gusta

Hola Daniela, este CSS tampoco parece funcionar para mí para cambiar el tamaño del logotipo SVG en la navegación…

Saludos,

Alex

Este es un tema muy antiguo; ahora hay un componente de tema para cambiar el tamaño del logotipo de tu sitio.

3 Me gusta

Hola Daniela, ¡gracias! No importa, ya lo resolví. Aquí está el CSS por si alguien más lo necesita:

.logo-big {
  width:8vw!important;   
  min-width:100px;
}
2 Me gusta