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

こんにちは、ダニエラさん。ナビゲーション内の SVG ロゴのサイズを変更するために、この CSS も私には機能していないようです。

よろしくお願いいたします、

アレックス

これは非常に古いトピックです。現在は、サイトのロゴサイズを変更するためのテーマコンポーネントが用意されています。

「いいね!」 3

こんにちは、ダニエラさん。ありがとう!気にしないで、解決しました。同じように必要としている方のために、CSS を以下に載せます:

.logo-big {
  width:8vw!important;   
  min-width:100px;
}
「いいね!」 2