Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #271340

    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.

    http://tonyskalicky.com/remco

    Thanks!

    Tony

    #271516

    Hi!

    Try this (Quick CSS):

    .logo{
    display: none;
    }
    .header-scrolled .logo{
    display: block;
    }

    Cheers!
    Josue

    • This reply was modified 10 years, 5 months ago by Josue.
    #271579

    That did it! Thank you!

    #271580

    You are welcome, always glad to help ;)

    Best regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to remove logo in header until sticky header is activated’ is closed to new replies.