Problem with Max-Mega-Menu for Travelify theme

Hello,
I have a problem when I use the plugin “Max Mega Munu”.
Then an additional line with “Navigation” available. This is incorrect.
In other themes, the plugin works fine.
However, I would like to use “Travelify”.
Can you fix it?

many Greetings
Mike

Add this code to Child Theme functions.php file or inside travelify theme functions.php file if you are not using a Child Theme.

// Remove navigation link from TinyNav
add_action( 'init' , 'remove_navigation_link' , 10 );
function remove_navigation_link() {
        remove_action( 'wp_nav_menu_items', 'travelify_nav_menu_alter', 10, 2 );
}

Let me know if this helps.

Hello Aigars,

Many Thanks,
this works perfect.

I have (see screenshot) three more questions

  1. How can I change the width to full width?
  2. The menu is too deep - how can that be changed?
  3. How / where can the response value to be changed (switch to mobile menu)

many Greetings
Mike

ps .: sorry for my english
is written with Google Translator

Supplementary Question 2:
The start menu is too low only at mobile view

Hello;

I’ve found the solution:
i have changed in style.css:


.container {
         margin: 0 auto;
         max-width: 100%;
}

Border set from: 1px solid # 439f55
to: none;


#main-nav {
        border: none;
        cursor: pointer;
        background: #57ad68;
        color: #fff;
        position: relative;
        text-shadow: 0 1px 1px rgba(0,0,0,0.4);
        -webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
        box-shadow: inset 0 1px 1px rgba(255,255,255,0.2);
}

Under: @media only screen and (max-width: 767px)

paddding set from 13px 0 0;
to: 0 0 0;


        #main-nav {
                height: 36px;
                padding: 0 0 0;
        }

Now I can begin to create the child theme.

many Greetings
Mike