I've got a wordpress site I'm working on that's a few years old, (but up to date...as much as possible), and uses the "Expound" theme.
It is supposed to be responsive, but the nav bar isn't functioning correctly. When the display is less than 600px wide the nav bar menu collapses, as it should. The problem is that the menu doesn't extend when you click on the collapsed "menu".
I just want to know what needs to be done to actually show that nav bar on a mobile device/smaller screen.
I'm more than happy to provide code snippets, but I'm not exactly sure where the problem is.
This is what my reset.css file contains (which is what is responsible for the collapsing action):
/* Small menu */
.menu-toggle {
display: none;
cursor: pointer;
}
.main-small-navigation ul {
display: none;
}
@media screen and (max-width: 600px) {
.menu-toggle,
.main-small-navigation ul.nav-menu.toggled-on {
display: block;
}
.navigation-main ul {
display: none;
}
}