• Hello,

    Is there a way to make the sticky meny initially hidden, and only appear after you scroll the 20px below (where it is located)?

    Thanks!
    Pedro

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, thanks for trying my plugin!

    It’s possible to do this with some CSS code, but only by making the menu hidden with visiblity: hidden; — you can not use display: block;.

    It would be something like this:

    .sticky-element-original {
        visibility: hidden;
    }
    
    .sticky-element-original:not('.sticky-element-active') {
        visibility: visible;
    }

    Hope this helps!

    Hey,

    I am attempting to use this CSS to hide the element when inactive, which works, though the prompt to make if visible when active does now.

    is there an element of code missing?

    Can you share a link to your site? That way I can see what might be wrong with it and find you a solution. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hidden Menu’ is closed to new replies.