• Resolved Mafty_Erin

    (@mafty_erin)


    I want that the main header menu (called menu-box in the css) stop following as i scroll the page. What do i have to modify for that?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi there,

    add the following code to the functions.php file of your child theme:

    <?php
    function minezine_child_scripts_styles() {
      wp_dequeue_script( 'minezine-menubox' );
      wp_deregister_script( 'minezine-menubox' );
    }
    add_action( 'wp_enqueue_scripts', 'minezine_child_scripts_styles', 20 );
    ?>

    Hope this helps.

    Theme Author TT Themes

    (@tomastoman)

    @mafty_erin: Hi, you also can use the following custom CSS to disable the fixed menu box:

    html #wrapper .sticky-nav {position: relative; top: auto;}

    Best regards,
    Tomas Toman

    Thread Starter Mafty_Erin

    (@mafty_erin)

    Thanks for the help. I tried the custom css option provided by Tomas and it worked like a charm. Thanks, old chum.

    Theme Author TT Themes

    (@tomastoman)

    I am glad that I could help you! ??

    Best regards,
    Tomas Toman

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do i make the main menu to stop following me’ is closed to new replies.