Working on a project for my university, I utilized Bootstrap-4 to create various divisions - header, content-top-fat, content-bot-fat, and main-content. I aimed to fix the positioning of the header, content sections, and footer while allowing only the main content section to be scrollable. However, upon adding a sidebar navigation menu, an overlapping issue arose which affected the appearance of the layout. If you can review my code and image provided, kindly assist me in resolving this problem by fixing the position and scrollbar functionality specifically for the main content part.
Thank you.
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
...
...