To anyone that is having the issue of the navbar staying permanently closed, use this CSS. Fixed it for me.
.navbar-collapse.collapse.in{ display: block !important }
You must also add this to the media query
.navbar-collapse.collapse{ display: none !important; }
To anyone that is having the issue of the navbar staying permanently closed, use this CSS. Fixed it for me.
.navbar-collapse.collapse.in{
display: block !important
}
You must also add this to the media query
.navbar-collapse.collapse{
display: none !important;
}