Can someone help me achieve the following layout style?
+-----------------------------------------------------------+
| Top Sticky Nav |
+--------------------------------------------------------+--+
| |S |
| |C |
| Div |R |
| |O |
| |L |
| |L |
+--------------------------------------------------------+--+
| Bottom Sticky Nav |
+-----------------------------------------------------------+
I am looking to implement Bootstrap 4 nav bars that will stay fixed at the top and bottom of the page. In between them, there will be a content div that will display a scroll bar automatically if its content exceeds the space between the two Navs. The scrollbar should only appear on the div and not overlap with either of the navs.
While this concept seems straightforward, I have encountered some issues with responsiveness when switching between full screen, partial screen, and mobile sizes.
Just so you know, the contents of the div will be a Bootstrap 4 form.
Any suggestions or examples for achieving something similar would be greatly appreciated!
Also, it's worth mentioning that the div needs to adjust its position when the navbar collapses on a mobile device and the hamburger menu is displayed and opened.
Thank you in advance!