Hey guys,
I recently updated my parabola theme on my wordpress site. I’m running into an issue where my navigation bar disappears when I resize the site to less than 650px. I’ve tried adding the following to misc. parabola settings under custom css:
/* Parabola Custom CSS */
@media (max-width: 650px) {
nav {
display: block;
padding-bottom: 5px;
}
}
However, it doesn’t do anything. When I inspect element, go to the nav bar and untick display: none; I get the nav bar back so I’m sure this is the issue. I just don’t know how to override it. Any suggestions?