Hello,
For a site I’m working on I need to display a different header logo with a different height for the blog part. I have been able to change the logo image from functions.php but I also need the allocated size to change, because the header logo image for the blog is considerably bigger. Any ideas on how to do that?
Cas
Hey LP-Media,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.page-id-37 #header_main > .container {
min-height: 70px;
}
Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.
Best regards,
Yigit
Thanks, that works! But how could I use this to increase logo size on all blog pages: single post, archive and so on, basically anything except a few page ids?
I guess some selector like :not(page-id, page-id, page-id, ..) #header_main > .container {
?
Hey!
Please use the code as following
.page-id-37 #header_main > .container,.archive #header_main > .container,.single-post #header_main > .container {
min-height: 70px;
}
Regards,
Yigit
Thanks, that works now, too!
Except my newly uploaded header-logo is 316px high, and even though the container is now just as high, the image is shrunk down to around 150px?