My client has a specific need to have a band of text under their logo on the website that renders unreadable when the header shrinks. Is it possible to upload a second logo to display as the small logo?
Hey!
Try adding this code to the Quick CSS:
.header-scrolled .logo img {
opacity: 0;
}
.header-scrolled .logo a {
background-image: url("SCROLLED LOGO URL HERE");
background-repeat: no-repeat;
background-size: contain;
background-position: center center;
}
Cheers!
Josue