Bootstrap: How do I make the hamburger visible at breakpoint and hide navbar for all other screen sizes?

571 Views Asked by At

I would like to hide the navbar for all screen sizes, except 480px and smaller screen sizes where I would like the "hamburger" to be displayed. How can I achieve this? Thank you.

2

There are 2 best solutions below

0
azizj On

Use the visible-xs class on your div. E.g.,

<div class="visible-xs any-other-class-you-may-have">
 ...
</div>
0
Carol Skelly On

Use a media query..

.navbar {
    display: none;
}

@media (max-width: 480px) {
    .navbar {
        display: block;
    }
}

http://www.codeply.com/go/TzpIH3b0uH