Currently, I am utilizing a dropdown widget from http://www.w3schools.com/ :
<div class="dropdown">
<button onclick="myFunction()" class="dropbtn">Dropdown</button>
<div id="myDropdown" class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
However, I am facing an issue where the dropdown is not positioned above and gets overlapped. You can view the screenshot here: Could someone advise on the CSS adjustments needed to rectify this? Thank you.