Hey there, I'm currently working on building a sidebar similar to the one you can find here. The issue I'm facing is that my sidebar overlaps with the footer at the bottom of the page. What I need is for the sidebar to move up when the user scrolls down to the end of the page (just like in the example I linked). Here's a snippet of my code:
.bs-docs-sidenav {
background-color: #FFFFFF;
border-radius: 6px 6px 6px 6px;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.067);
margin: 60px 0 0;
padding: 0;
width: 228px;
}
.bs-docs-sidenav > li:first-child > a {
border-radius: 6px 6px 0 0;
}
...
Insert remaining CSS code here
...
Here's a glimpse of the HTML structure as well:
Insert HTML code here
If someone could take a look and let me know what might be going wrong with my code, I would greatly appreciate it!