Skip to main content
Nintex Community Menu Bar

master and child page scroll bar

  • July 8, 2024
  • 3 replies
  • 21 views

Forum|alt.badge.img+20

This topic has been closed for replies.

3 replies

Forum|alt.badge.img+5
  • July 8, 2024

Good point! For me it still makes sense, since it’s all the same page. Especially if the header isn’t set to fixed.
A way you can achieve this would be by putting the page region inside a wrapper with the style properties overflow: auto; and max-height: 90vh; while using height: 10vh; on the header (you can use any sizes there)
then simply add an inline css with body { overflow: hidden; } and then you only have a scroll bar on the included content.


Forum|alt.badge.img+17

Thanks, Thimo! I modified your idea and used it on a wrapper instead of a page region. Worked like a charm to give me a horizontal scroll bar on a wrapper component with overflow hidden.


Forum|alt.badge.img+4
  • July 8, 2024

Glad this worked.