Open MostHated opened 4 years ago
I've got a similar issue. I'm trying to prevent the second level menus from fully expanding.
@MostHated add the following to your custom theme and this should expand all the menus:
#sidebar ul.topics ul {
display: block;
}
For my requirements the following css will expand only the child menu one level:
/*
#sidebar ul.topics > li.active ul {
display: none;
}
#sidebar ul.topics > li.active > ul {
display: block;
}
Both the above were adapted from answers given in #88
Hello
I have been trying to figure out if there is a way to always show the entire menu as expanded, not just when you are under a particular top-level, but even at the main root _index.md. Is this possible currently?
Thanks, -MH