Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #947141

    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

    • This topic was modified 6 years, 7 months ago by Freek.
    #947927

    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

    #947960

    Unfortunately it does not work. Maybe there is another code i can use? THX Freek

    #947983

    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

    #948012

    That did the trick! THX Vinay
    case closed!

    #948072

    Hi,

    Glad we could help :)

    Thank you for using Enfold.

    Best regards,
    Vinay

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove mobile menu’ is closed to new replies.