[Resolved] Remove navigation but keep sticky

Home Forums Support [Resolved] Remove navigation but keep sticky

Home Forums Support Remove navigation but keep sticky

  • This topic has 6 replies, 3 voices, and was last updated 6 years ago by Tom.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #540875
    Damiaan van Vliet

    Hi support,
    I want to have the main navigation on home page removed but when scrolling down the sticky navigation (which I setup with customizer) should be visible.
    I tried several css solutions but I don’t know how to establish that.

    Thanks for the help!

    #541071
    Leo
    Staff
    Customer Support

    Hi there,

    Try this:

    .main-navigation:not(.navigation-stick) {
        display: none;
    }
    #541587
    Damiaan van Vliet

    Hi Leo, code looks like it should work but it does not.
    Yes, the main-navigation is gone but when scrolling down navigation is not visible.

    #542049
    Leo
    Staff
    Customer Support

    Can you link me to the page in question with the CSS applied?

    #542193
    Tom
    Lead Developer
    Lead Developer

    This should do it:

    #site-navigation:not(.navigation-stick), 
    #sticky-placeholder {
        height: 0;
        overflow: hidden;
    }
    #542664
    Damiaan van Vliet

    YES!!! That’s it!
    Wow, you guys rock!

    Thanks @Leo and @Tom.

    #543086
    Tom
    Lead Developer
    Lead Developer

    Glad we could help 🙂

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.