Logo size in header

I have just rebuilt my site after moving it to a new hosting (DigitalPress.blog).

The landing page header has provision for an image and a logo. The image has imported OK but the logo appears really small – like 100 px across.

Whatever size I make the .png for the logo, I can’t seem to influence the appearing size. What am I missing here?

It’s the standard Caspar theme on self-hosted Ghost 4.n

https://freshbread.today

–Ian Greig

seems you need to adjust the logo size with CSS… Here is what you can do

From code injection on Site Header paste the following CSS

<style>
  .site-logo {
      max-height: 100px !important;
   }
</style>

Adjust the 100px as you need.
Save it.

2 Likes