Bootstrap toggle nav not rendering @ 768px-992px break

762 views Asked by At

Bootstrap toggle nav not rendering @ 768px-992px break. Please advise. http://www.marinwaldorf.org/New/index.htm

1

There are 1 answers

3
petermchugh On

Bootstrap.css does not display the toggle nav >768px, you can override the bootstrap.css in your local .css to display the toggle nav up to 992px, then this will show the nav up to 992px, then hide the other elements to show the menu as it does <768px.

Something along the lines of..

@media (max-width:992px){
    .navbar-header{
        display:block !important;
     }
}