Tagged: , ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #84760

    HI,

    i want to add 2 Pages for footer menu, I used appearance > menu option, but it is not matched for my site ( dhamma Friends)
    This is My First Web site
    see this Image (Normal menu) Normal Menu
    But i want to use menu in this area This Area

    how to add menu or 2 pages on footer area ,
    please help to me ,
    Good luck

    #84781
    Pratik
    Keymaster

    Hi DMP Lakshitha,

    I looked at the site and it looks like you have added the menu to where you want using Footer Widgets.

    Is this problem solved?

    Please let me know.

    Regards,
    Pratik

    #84825

    Hi pratik

    Thanks for reply,
    I Used Widget Menu,
    but i want to menu use this place


    I want to display privacy policy & terms and condition pages,
    Like this image

    help me ,

    #84928
    Pratik
    Keymaster

    Hi @DMP Lakshitha,

    This is achievable but will require you to do a bit of customization via child theme. The details for child theme is here. Then you need to add following code in the child theme’s functions.php file and add footer menu:

    
    /**
     * Remove Footer Menu from its current position to site generator area 
     *
     */
    function catchevolution_move_footer_menu() {
    	remove_action( 'catchevolution_after_footer_sidebar', 'catchevolution_footer_menu', 10 );
    	add_action( 'catchevolution_site_generator', 'catchevolution_footer_menu', 11 );
    }
    add_action( 'init', 'catchevolution_move_footer_menu' );
    

    What this will do is remove the footer menu from its current position and shift it between social icons and footer copyright section.

    After you do this, ping me here again and i will provide you with CSS codes required to make the menu and footer copyright center because I need to see it live before giving you the CSS codes.

    Regards,
    Pratik
    Let me know after you have done following steps

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘menu add to footer’ is closed to new replies.