javascript - Increase bootstrap collapsed menu height ( when opened) -
i have created basic site bootstrap. using bootstrap navbar, collapsed option smaller devices.
i want increased height of ".collapsed navbar-collapsed" takes more space in page.
i gladly show image illistrate problem better im not allowed post images on here yet.
so pretty when view navigation bar on mobile device, looks great when collapsed menu closed. when click on 3 lined image open menu, shows 1 , half navigation page buttons. there way increase height can see 5 pages have there, if opened menu goes on jumbotron division below it?
<nav class="navbar navbar-inverse"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#mynavbar"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html" style="font-size: 30px;">mark wuerch</a> </div> <div class="collapse navbar-collapse" id="mynavbar"> <ul class="nav navbar-nav"> <li class="active"><a href="index.html">home</a></li> <li><a href="aboutme.html">about me</a></li> <li><a href="philo.html">philosophy</a></li> <li><a href="cv.html">my cv</a></li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#">my projects <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="#">school project on disabled learners</a></li> <li><a href="#">building better school 1 book @ time</a></li> <li><a href="#">working esl students</a></li> </ul> </ul> </div> </div> </nav>
see me / home part. how make entire area larger when click on expand button can see 5 pages have.
the default bootstrap css .navbar
has height of 50px need override in order increase navbar
.navbar {min-height:80px !important}
to increase inner elements said, have use media queries:
@media (max-width: 767px) { .navbar-nav > li > { line-height: 90px;/*changing particular line lot, increase , decrease done */ padding-top: 10px; padding-bottom: 10px; height: auto !important; overflow: visible !important; } }
bootply link
since need specific screen-size, can use this:
.navbar-xs { min-height:58px; height: 58px; }
you should take @ this, found more answers: decrease size of navbar
Comments
Post a Comment