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 Likes

Hey Daniela, this CSS also doesn’t seem to work for me to change the size of the SVG logo in the nav…

Best,

Alex

This is a very old topic, now there is a theme component to change the logo size of your site,

3 Likes

Hi Daniela, thank you! Never mind – figured it out. Here’s the CSS for anyone else that needs it:

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