I have two bootstrap columns \"left\" and \"right\"; I want to fix the left column with the screen and disable scroll. but i want to enable scroll in the right column which
You can achieve this by simply applying some CSS:
Here is an example: https://jsfiddle.net/kLu69r7t/
.fixed-col {
height: 100vh;
}
.scrollable-col {
height: 100vh;
overflow-y: scroll;
}
Of course you need to give the columns the respective classes.