I've encountered an issue with my button dropdown extending beyond the visible page area.
I've implemented the standard Bootstrap code for the dropdown:
<div class="btn-group">
<button class="btn btn-info">Log In</button>
<button class="btn btn-info dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Log In with Facebook</a></li>
<li class="divider"></li>
<li><a href="#">Create New Account</a></li>
</ul>
</div>
The same issue is occurring at the bottom of the page, where another button dropdown opens, but doesn't adjust automatically, requiring me to scroll down to view all the options.
Any suggestions on how to address this?