Within my fixed container, I have a dynamic list (ul) of items with a title at the top.
However, it seems that the presence of the title is causing an issue with scrolling. The bottom part of the list is being pushed below the view port, making it impossible to scroll to the last item.
You can check out my HTML & CSS skeleton here to see the problem in action.
This is my HTML structure:
<div class="menu-wrap">
<div style="height:100px">
<div>my items</div>
</div>
<div class="menu">
<div class="icon-list">
<ul>
<li class="playerBox">
<div class="topRect">
item 1
</div>
</li>
<!-- unknown number of items -->
<li class="playerBox">
<div class="topRect">
item n
</div>
</li>
</ul>
</div>
</div>
</div>
If anyone has any suggestions on how to display the list scroll bar properly so users can reach the last item easily, please let me know.
Thank you, Idan