Tagged: menu
- This topic has 5 replies, 2 voices, and was last updated 11 years, 9 months ago by
Sakin.
Viewing 6 posts - 1 through 6 (of 6 total)
-
AuthorPosts
-
July 5, 2013 at 3:57 pm #11436
Sabrinilla
MemberHi,
Am working on a site in progress and i would like to put the menu below the slider.
How can i do this ?Thank you so so much!
July 5, 2013 at 4:58 pm #11449Sakin
Keymaster@Sabrinilla: You can do that by building child theme and then in your child theme functions.php
For example. The code will be as below:
// Unhook default functions function unhook_default_functions() { remove_action( 'catcheverest_before_main', 'catcheverest_slider_display', 10 ); } add_action('init','unhook_default_functions'); add_action( 'catcheverest_after_hgroup_wrap', 'catcheverest_slider_display', 10 );
For more about child theme hooks. See this http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/
July 5, 2013 at 5:11 pm #11455Sabrinilla
Memberso, in my child theme, i creat a file : functions.php and inside this file i paste this code ?
July 5, 2013 at 5:27 pm #11456Sakin
Keymaster@Sabrinilla: Yes that true. I give you that example.
July 5, 2013 at 5:33 pm #11457Sabrinilla
MemberIt works!! : ) thank you very much!!
July 5, 2013 at 5:42 pm #11458Sakin
Keymaster@Sabrinilla: Nice 🙂
-
AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)
- The topic ‘put the menu below the slider’ is closed to new replies.