do you have a link?
i think you can just do:
#grid, #footer-region {
height: 100%;
position: fixed;
top: 0;
overflow-y: scroll;
overflow: -moz-scrollbars-none;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
#footer-region {
width: 20%;
left: 0;
}
#grid {
width: 80%;
right: 0;
}
::-webkit-scrollbar {
display: none;
}
or:
#grid, #footer-region {
height: 100%;
position: fixed;
top: 0;
overflow-y: scroll;
overflow: -moz-scrollbars-none;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
#footer-region {
width: 300px;
left: 0;
}
#grid {
width: calc(100% - 300px);
right: 0;
}
::-webkit-scrollbar {
display: none;
}