Hi,
I have resolved above issue with mega menu plugin by blocking both TOP & PRIMARY menu so that i can use only Mobile menu. I used following code in css.
@media only screen and (max-width: 900px) {
#mega-menu-wrap-primary {
display: none;
}
}
@media only screen and (max-width: 900px) {
#mega-menu-wrap-top {
display: none;
}
}
Only query i am having now is “Top Menu open all sub menu directly” is there any way to set this to open only main menu??