Scrollable dataview table

That worked for me! I changed “height” for “max-height” so as to not have a big empty box if there’s only a few items listed:

.block-language-dataview  {
    display: block;
    max-height: 400px;
    overflow: auto;
}

Thank you so much.

6 Likes