garand / sticky

jQuery Plugin for Sticky Objects
Other
3.3k stars 1.06k forks source link

Items not sticking on mobile #129

Open joeguilmette opened 9 years ago

joeguilmette commented 9 years ago

Testing device (Xcode iOS Simulator) works with buttons on stickyjs.com, but not on my site.

Testing site is set up for you to check out: drop2.joeguilmette.com

Items just don't stick. Works fine for me on all desktop browsers.

js:

  $(".sidebar-page").sticky({topSpacing:65});
  $(".sidebar-home").sticky({topSpacing:15});
  $("#header-search").sticky({topSpacing:15});

stop stickyjs from sticking on (some) mobile:

@media (max-width: 674px) {
    #header-search,
    #sidebar{
    position: static !important;
    }
}

Maybe the issue is I'm stacking two sticky elements on top of each other? Any ideas?