Is there a way to make my left menu, which is a ul, stay static on the screen so that the full menu always appears when I scroll?
I attempted to set 'position: fixed; top: 0, left: 0' but it caused the div next to the ul to shift on top of the ul.
<div>
<!-- Sidebar -->
<ul class='anvbar-nav'>
<!-- ...some other stuff-->
</ul>
<!-- Content Wrapper -->
<div class='content'>
<!-- ...some other stuff-->
</div>
My goal is to have the ul positioned fixed on the top left side without the content div moving on top of it. How can I accomplish this? I want the content div to fill the remaining space on the screen without overlapping with the left menu (ul).