Well, I had 4.4 installed. And I was using a 330×194 pixels png logo. But, when I try to upload the same image on Newspaper 6.3 it gets small in size (provided that while uploading it was- use Full Size(330×194) enabled)
So, Now I had to crop my logo to 272×90. But, it’s not looking good as before.
The original logo can be observed at the footer section of my site.
If you have any doubts you can just save the logo from footer and test it offline, you would observe what I mean to say.
Hi,
Unfortunately there is fixed height for container and a max height for logo image that’s why you have this issue with logo, because it matter the aspect ratio of the image. You will need custom modification to use the same image size and increase the width and height, I suggest to hire a professional to do this for you if you don’t have basic css/html experience as we cannot provide custom work, sorry! Y ou have to customize it for each screen size using media queries, for example – http://screencast.com/t/YG6pPPShacL
@media (min-width: 1140px) {
.td-header-style-1 .td-header-sp-logo {
width: 340px;
height: 160px !important;
margin: 28px 0px 9px 0px;
}
.td-header-style-1 .td-header-sp-logo img {
max-height: 160px;
}
.td-header-style-1 .td-header-sp-recs {
margin: 40px 0 9px 0 !important;
}
}
Thanks!
Okay. Well, I’m disappointed to hear that because it was not a problem in the old version. And, I’m not at a position to hire a professional to handle that. I’ll try to manage by adjusting the current logo within the fixed width and height. It would be nice to see a logo size customization option in the near future.
By, the way, I’m in love with the new version (except few problems like the Google+ link and logo resizing)
Also, one of the block needs care. The block 18 doesn’t look like it should. The main image overlaps on the second. For reference take a look at when I simply implemented on my homescreen.
http://www.screencast.com/t/I6365HQZ8IH
Hi,
In version 6 the logo can be used at 272×90 size like you already know, unfortunately it was designed like this and you can change it using custom css. You can upload your the size that you use in the footer and check it with this custom css in Theme Panel > Custom Css – http://screencast.com/t/exoB9n4gwr3 – http://screencast.com/t/jv6fQi15iDN
.td-header-style-1 .td-header-sp-logo img {
max-height: none !important;
}
.td-header-style-1 .td-header-sp-logo {
height: 115px;
max-height: none !important;
}
@media (min-width: 768px) and (max-width: 1019px) {
.td-header-style-1 .td-header-sp-logo {
height: 100px;
}
}
Regarding second issue I could not recreate this so please provide a link where you use this bloc so we can take look and inspect this. Also test it without any plugins active, leave only Visual Composer active, clear cache and see if the issue is still there.
Thanks!