I am using Isotope for a project. We bought a commercial license.
I need to get the isotope tiles in a fixed-size container (height is especially critical) to work within a larger layout.
I tried setting css height on the container:
<style type="text/css">
#container {
width:990px;
height: 550px !important;
overflow: scroll;
}
</style>
But this creates a non-scrollable container. What am I missing?