How to stop table scrolling?

Hi Craig,

That code is correct, so if it’s not working, there might be some conflicting CSS elsewhere. You can try adding the word !important to override the conflicting CSS if any exists.

The updated code would look like this:

.kn-table-wrapper {
overflow: visible!important;
}

.kn-table-wrapper.is-constrained {
max-height: 100%!important;
}

I’ve tested the above and it works. If you find that it still isn’t working, you can try confirming that your CSS doesn’t have invalid comments in it. The syntax for comments in CSS should be like this:
/* this is a comment */

I often see people using this syntax in CSS which is for JS not CSS, and can break your CSS:
// this is a comment

Hope this helps.