I'm struggling to automatically add a scrollbar to my sidebar menu if it is long. Can someone please help me with this issue? I have tried various solutions but haven't been able to resolve it yet. Here is the HTML code for reference.
HTML:
<div id="menuwrapper" >
<ul class="MainMenu">
<li>
<a href="#"><strong style="margin-left:7px;">Current Openings</strong></a>
</li>
<li style="height: 27px;">
<a href="#"><strong style="margin-left:7px;">Travel Request</strong></a>
</li>
<li><a href="#"><strong style="margin-left:7px;">Timesheet Management</strong></a>
</li>
<li><a href="#"><strong style="margin-left:7px;">Leave Management</strong></a>
</li>
<li><a href="#"><strong style="margin-left:7px;">Remuneration</strong></a>
</li>
<li>
<a href="#"><strong style="margin-left:7px;">My Assets</strong></a>
</li>
</ul>
<div id="datepicker"></div>
</div>