My mod_menu disappears before Menu2Panel becomes visible
- Posted by Tony Jillson (2) Offline
Hi,
I have a 'regular' menu that I want to disappear when menu2panel shows up. The problem is that it disappears way before the page is narrow enough to show menu2panel, leaving no menu at all on devices like the iPad mini.
How do I control this behavior?
Thanks!
9 years 3 weeks ago #1
by Tony Jillson
I have a 'regular' menu that I want to disappear when menu2panel shows up. The problem is that it disappears way before the page is narrow enough to show menu2panel, leaving no menu at all on devices like the iPad mini.
How do I control this behavior?
Thanks!
Please Log in or Create an account to join the conversation.
- Posted by Tony Jillson (2) Offline
I discovered that another person on the forum has a similar issue. You proposed this fix:
a#mmenu {
display:block!important;
}
Still no go, unfortunately. Now the mobile menu appears and disappears at various widths, while the regular menu is still visible.
I am going to take the above fix out of my css.
I'd be ok with the mobile menu only showing on smaller devices, but I can't have the regular menu disappearing on iPad's.
I'd appreciate any help you can give.
Thanks!
9 years 3 weeks ago #2
by Tony Jillson
a#mmenu {
display:block!important;
}
Still no go, unfortunately. Now the mobile menu appears and disappears at various widths, while the regular menu is still visible.
I am going to take the above fix out of my css.
I'd be ok with the mobile menu only showing on smaller devices, but I can't have the regular menu disappearing on iPad's.
I'd appreciate any help you can give.
Thanks!
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi, can you try to add this code to your css file?
9 years 3 weeks ago #3
by TemplatePlazza
@media only screen and (min-width:480px) and (max-width: 980px) {
#menu2panelhide {display:inline!important;}
}
Please Log in or Create an account to join the conversation.