Hi,
I want to remove my Enfold mobile menu completely because I use a menu plugin. I do not want to remove my mobile header and logo.
tried all found solutions but no luck.
code now:
@media only screen and (max-width: 767px) {
.responsive #top .logo img {
margin: auto;
}
.responsive #top .logo {
width: 100%!important;
}}
#advanced_menu_toggle, #advanced_menu_hide { display: none !important; }
What is the best way to do this?
THX Freek
Hey Freek,
Please try adding this code to WordPress > Customize > Additional CSS:
@media only screen and (max-width: 989px) {
.responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
display: none !important;
}
}
Best regards,
Mike
Unfortunately it does not work. Maybe there is another code i can use? THX Freek
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
@media only screen and (max-width: 767px) {
.responsive .av-burger-menu-main {
display: none!important;
}}
Best regards,
Vinay
That did the trick! THX Vinay
case closed!
Hi,
Glad we could help :)
Thank you for using Enfold.
Best regards,
Vinay