My Html page has a menu bar created in the footer area. Currently, the entire page is scrollable. How can I prevent scrolling only for the footer and restrict it to the content of the page?
The code for the footer menu bar is shown below:
#menu-bar {
height: 50px;
position: fixed;
left: 0px;
bottom: 0px;
width: 100%;
margin: 0px;
padding: 0px;
line-height: 10px;
background: #F07C1F;
z-index: 1000;
}