I am using Bootstrap and Select2.
I have encountered the unclickable search box error on Select2 which I fixed by adding overflow: visible
on my modal.
<div class="modal fade" id="myModal1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" style="overflow:visible">
But this caused my modal to be unscrollable. Changing it to overflow:scroll
caused the previous Select2 error to re-appear.
How do I go about this? Can I use two overflow properties?