Container level scrolling

Sure! Thanks for the ping @Darren_Murphy

Give your container a classname stickytop and paste this into custom CSS:

.stickytop {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 999;
  margin-top: 0px;
}
3 Likes