Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #239293
    td8000
    Participant

    Hi there,

    is there a way to move the menu bar from above the header image to directly below it?

    http://yoga-in-jedem-alter.de/mf-wp/

    Thanks a lot, Tobi

    #239307
    Skandha
    Participant

    @td8000: Hello Tobi,
    For that you will need to create a child theme and do a little bit of customization. Let me know if you are familiar with child theme customization otherwise I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    #239340
    td8000
    Participant

    Hi Skandha,

    i’m fine with child themes. Already working on one.

    Tobi

    #239392
    Skandha
    Participant

    @td8000: Hello Tobi,
    Go to => Child Theme Folder => functions.php and add the following Code.

    function primary_menu_below_header_image() {
    	remove_action( 'catchbase_after_header', 'catchbase_primary_menu', 20 );
    	add_action( 'catchbase_after_header', 'catchbase_primary_menu', 45 );
    }
    add_action( 'wp_head', 'primary_menu_below_header_image' );

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Move navigation menu below header image’ is closed to new replies.