Hi, is there a way to make this possible? My requirements need a fixed modal with scrollable content since the inner contents are really really long (transitioning from Bootstrap 2 Modals)
You can use simple css for it. In your modal, which is lets say 400px height, create a div with overflow: auto; height: 400px; and put your content inside this div. Should work.
Most helpful comment
You can use simple css for it. In your modal, which is lets say
400px height, create a div withoverflow: auto; height: 400px;and put your content inside this div. Should work.