Keep mobile menu always open
Hello community:
I need to keep the mobile menu open at all times, without the need to click on the three horizontal bars icon. Mobile menu appears at 768px and below.
I tried the code below, based on this question.
@media (min-width: 768px)
{
.btn-navbar-header
{
float: none;
}
.btn-navbar-toggle
{
display: block;
}
.btn-navbar-collapse.collapse
{
display: none !important;
}
}
However, it didn´t work.
Please advice. Here is the link to the Website
Thanks.