- This topic has 3 replies, 2 voices, and was last updated 8 years, 9 months ago by Pratik.
-
AuthorPosts
-
February 6, 2016 at 10:28 am #84760DMP LakshithaMember
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)
But i want to use menu in this areahow to add menu or 2 pages on footer area ,
please help to me ,
Good luckFebruary 6, 2016 at 8:16 pm #84781PratikParticipantHi 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,
PratikFebruary 7, 2016 at 11:40 am #84825DMP LakshithaMemberHi 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 ,
February 8, 2016 at 9:49 am #84928PratikParticipantHi @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 -
AuthorPosts
- The topic ‘menu add to footer’ is closed to new replies.