Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #60961
    Kev0192
    Member

    Hello,

    Is there anyway to move the Primary menu to appear underneath the Featured Image Slider or alternatively, to move the featured image slider to above the primary menu??

    Thanks,

    -Kevin

    #61010
    Sakin
    Keymaster

    @Kev0192: Sorry there is not options to do this. For this, first you need to build child theme. For child theme refer to http://catchthemes.com/blog/create-child-theme-wordpress/

    Then add the following code in your child theme functions.php file:

    // Unhook default Catch Responsive functions
    function unhook_catchresponsive_functions() {
        remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    }
    add_action( 'init', 'unhook_catchresponsive_functions' );
    
    //Adding menu after slider
    add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 20 );
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Move Primary Menu underneath Featured Image Slider?’ is closed to new replies.