๐งฉLogo
There are certain things to consider when uploading a logo. Your logo should not contain too much empty space. You can remove unnecessary spaces using an image editing program.
Upload a logo
To upload and change a logo, go to the "Design and branding" settings in Ghost Admin.
In the opened window, under the Brand tab, find the "Publication logo" field and click "Upload logo" to upload your logo.
Finally, click "Save" to activate.
Uploading a Secondary Logo for Dark mode
Go to the "Design & Branding" tab in the Ghost Admin panel.
In the opened window, click on the "Theme" tab, find the "Dark mode logo" field and click "Upload image" to upload your dark mode logo.
Finally, click "Save" to activate.
How to change logo size?
In previous versions, this was done directly through the Ghost panel, but now youโll need to do it from the Code Injection section.
Open Code Injection from the Ghost settings, then click on the Site Header tab.
Paste the code below into the section that opens, and choose your desired logo size.
<style>
:root{
--header-logo-size:18px!important;
--footer-logo-size:18px!important;
--cover-image-height: 100px;
--cover-opacity: 0.8;
}
</style>
Finally, click "Save".
Last updated