Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #90101
    Alexander Chernyh
    Participant

    Hi
    I need to make menu after slider

    Help

    #90140
    Mahesh
    Keymaster

    @alexch: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'catchresponsive_child_menu_after_slider' );
    function catchresponsive_child_menu_after_slider() {
    	remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    	add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 11 );
    }

    Note: If you want to remove the padding-bottom of slider. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider {
        padding-bottom: 0;
    }

    Regards,
    Mahesh

    #90145
    Alexander Chernyh
    Participant

    Thx

    it works fine

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Menu after slider’ is closed to new replies.