• I would like to have my menu (element) hidden on the page until it gets to the scroll activated point.

    This is a css element on the page rather than a menu, so the plugin would have to override the native pages css and hide the element.

    is this at all possible with a quick hack?

Viewing 1 replies (of 1 total)
  • I guess yes, something like CSS code bellow should work for you.
    Add it to plugin style css field (dashboard / settings / myStickymenu / style) and don’t forget to change .original-element class to your element class (it should be the same as Sticky Class)

    .original-element {
        opacity: 0;
    }
    #mysticky-nav .myfixed {
        opacity: 1;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Hidden Element when inactive’ is closed to new replies.