Reply To: scrolling of sections

Home Forums Support scrolling of sections Reply To: scrolling of sections

Home Forums Support scrolling of sections Reply To: scrolling of sections

#106628
Tom
Lead Developer
Lead Developer

You can give your sections a custom class, for example: custom-section-class

Then give that class the position:fixed attribute:

.custom-section-class {
      position: fixed;
      width: 100%;
      bottom: 0;
}

Will need some tweaking depending on how you’re using it 🙂