I get part of a button dropdown from the page view.

I use the standard bootstrap code:
<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>
I have a similar problem at the bottom of the page, where I have another button, and then the drop-down part opens, it does not automatically configure itself, and I need to scroll down to view all the parameters.
Any suggestion?
source
share