I have been trying to put my logo into the publication logo and the sizing is always way off. I have tried 600x72, 1200x144 (pictured) and a dozen varieties but the log always shows up tiny. Any ideas of what I may be doing wrong)
It is edition theme, png files and under the 100kb limit
Here was the replyâŚworked for me. I changed by default from 25 to 65px.
Hi Steve,
Thanks for reaching out!
With the theme you are using, I see the logo size being output within your theme is set to the following:
.logo-image {
height: 25px;
}
If youâd like to increase the display of your logo on your site, this âheighâ value can be increased, either within your stylesheet directly, or you can use Code Injection in Ghost Admin, to overwrite the theme default. For example, you could add something like this (below) to the Site Header using Code Injection:
.logo-image {
height: 25px;
}
To increase the size, youâd want to increase the value of the âheightâ to a larger number, then save your settings.
If you have additional questions on this, let us know! Weâre happy to help!
Thanks for this! Iâm trying to figure out what setting must change in my theme, which is Journal. Did you use the code injection method? Or did you modify the template file. If it was the template file, where was it located?