Reply To: How to put my logo on sticky menu?

Home Forums Support How to put my logo on sticky menu? Reply To: How to put my logo on sticky menu?

Home Forums Support How to put my logo on sticky menu? Reply To: How to put my logo on sticky menu?

#110640
Tom
Lead Developer
Lead Developer

Try this instead.

I’m working on my own sticky nav/header script, so this should only be temporary ๐Ÿ™‚

<script>
      jQuery(window).scroll(function() {
            if( jQuery(window).offset.top >= 320 && jQuery(window).width() >= 800 ) {
                  jQuery(".site-logo").prependTo("#mysticky-wrap");
            } else {
                  jQuery(".site-logo").prependTo(".inside-navigation");
            }
      });
</script>