Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #11436
    Sabrinilla
    Member

    Hi,

    Am working on a site in progress and i would like to put the menu below the slider.
    How can i do this ?

    Thank you so so much!

    #11449
    Sakin
    Keymaster

    @Sabrinilla: You can do that by building child theme and then in your child theme functions.php

    For example. The code will be as below:

    // Unhook default functions
    function unhook_default_functions() {
        remove_action( 'catcheverest_before_main', 'catcheverest_slider_display', 10 );
    }
    add_action('init','unhook_default_functions');
    
    add_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_slider_display', 10 );
    

    For more about child theme hooks. See this http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/

    #11455
    Sabrinilla
    Member

    so, in my child theme, i creat a file : functions.php and inside this file i paste this code ?

    #11456
    Sakin
    Keymaster

    @Sabrinilla: Yes that true. I give you that example.

    #11457
    Sabrinilla
    Member

    It works!! : ) thank you very much!!

    #11458
    Sakin
    Keymaster

    @Sabrinilla: Nice 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘put the menu below the slider’ is closed to new replies.