We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I created a drop down menu then shortened the browser width to a mobile size.
<li class="nav-item"> <a href="https://www.facebook.com/" class="nav-link"><i class="fa fa-facebook-square"></i> Facebook</a> </li> <li class="nav-item"> <div class="dropdown"> <button class="btn btn-primary btn-small dropdown-toggle" type="button" id="InfodropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-info-circle"></i> Info </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <a class="dropdown-item" href="/Page1.php">Page1</a> <a class="dropdown-item" href="/Page2.php">Page2</a> </div> </div> </li> <li class="nav-item"> <a class="btn btn-danger" role="button" href="https://tickets.com" target="_blank">Buy Tickets</a> </li>
When looking at mobile size, the Page1 and Page 2 are behind the Buy Tickets button.
I did tweak the CSS to make it work, submitting this bug so you can take a look.
paper-kit.css changes .dropdown .dropdown-menu { position: relative; } .navbar .navbar-nav .dropdown-menu { /** Commenting out for collapse menu overlay height: 400px; overflow-y: scroll; **/ }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I created a drop down menu then shortened the browser width to a mobile size.
When looking at mobile size, the Page1 and Page 2 are behind the Buy Tickets button.
I did tweak the CSS to make it work, submitting this bug so you can take a look.
paper-kit.css changes
.dropdown .dropdown-menu {
position: relative;
}
.navbar .navbar-nav .dropdown-menu {
/** Commenting out for collapse menu overlay
height: 400px;
overflow-y: scroll;
**/
}
The text was updated successfully, but these errors were encountered: