Hello,
I’d like to remove the logo from the header on my home page, until the user starts to scroll and the sticky header is activated, at which point I’d like the logo to appear in the sticky header.
How can I go about doing that? I would only like this feature to work on the Home page.
Thanks!
Tony
Hi!
Try this (Quick CSS):
.logo{
display: none;
}
.header-scrolled .logo{
display: block;
}
Cheers!
Josue
That did it! Thank you!
You are welcome, always glad to help ;)
Best regards,
Josue