Archived topic
how to prevent logo from dropping before disappearing
3 replies · Started by sparkle on December 11, 2017
I found a support topic here that allows me to hide my logo below a certain screen width. I noticed that while that works, there is a period while i am resizing, that the logo drops below the title and description, making my header twice as tall before disappearing. is there a way to prevent that logo from dropping down and making the header bigger? it's ok if it overlaps.
Hi there,
Give this CSS a try:
@media (max-width: 950px) {
.site-branding {
max-width: 650px;
}
}
great! this worked. thank you.
You're welcome :)