Archived topic
Logo has been squeezed when scroll the page
4 replies · Started by Kelvin on June 5, 2021
Dear Sir/Madam,
My logo on the website is a circle shape, , when I scroll down the page and then up a bit, I find the logo has been squeezed
, could you tell me how I can make the logo being proportional resize it?
Best regards,
Kelvin.
I found the link broken, here are the links
Normal logo size https://prnt.sc/#google_vignette
Logo has been squeezed https://prnt.sc/14bp8pp
Hi there,
you have this CSS:
.header-image.is-logo-image {
width: 80px;
height: auto;
}
change it to:
.header-image.is-logo-image {
height: 80px;
width: auto;
}
And you can adjust the height of the Sticky Navigation by adjusting the Menu Item Height in Customizer > Layout > Primary Navigation. the Logo will increase relative to this height.
Problem is solved
Glad to hear that