Hi team,
I am facing problems with the logo size and dimensions. In the below image I need to reduce the logo display size which I have tried reducing by changing the dimensions through choose logo but of no avail. Please help.
Please visit and check:
http://www.careongo.com/riseup
Hi,
that’s because the theme “forces” the logo to have 300px of width. Your image has width 150px and gets “upscaled”, making the height of the image to be 300px as well.
Make a 300×100 px with your logo in it (even if the image is partially “blank”) and upload it. It should display correctly (remember to flush caches)
Hope this helps, cheers!
Oh, I was referring to browser cache or it will show the old image.
I was not saying to resize the image you have, I said to change it canvas.
You can resize your logo from 150×150 to 100×100 and then change its canvas to 300×100.
Here, upload this and try it out.

As you can see in the theme panel, the theme expects a 300x100px image.
If you really want to use 150×150 you have to manually edit some files under the “parts” folder in your newspaper theme folder:
header-style-1.php (line 33)
menu-header-center.php (line 53)
menu-header.php (line 53)
replace width="300" with width="150"
The first solution has the advantage of persisting after an update while the latter needs to be redone after update (unless new version 5 of newspaper has more options).
Hi,
Thanks @nf_prt
I have tried to access your site, but – http://screencast.com/t/oE7cCm7e
@nf_prt has right the logo image have an inline css for width, if you use header 1 you can change the image width from – http://screencast.com/t/y2ytMxJ8gzJg
Or you can try to use this custom css – http://screencast.com/t/UFueFmFA
.header-logo-wrap img {
width: initial !important;
}
Thanks!