Tagged: menu
- This topic has 2 replies, 2 voices, and was last updated 10 years, 10 months ago by corinnecollins.com.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
January 15, 2014 at 8:58 pm #19324corinnecollins.comMember
I’m playing with the catchbox free theme and created a child theme. I’d like to place the primary menu above the logo instead of beneath it. Is this possbile and if so, which files would I need to edit to do this?
Thanks for any feedback or suggestions.
January 15, 2014 at 10:04 pm #19329SakinKeymaster@corinnecollins.com: Yes you can do that but it’s bit complicated. You need to create functions.php file in your child theme and add the following code:
<?php /** * Catch Box Child Theme functions and definitions * */ // Unhook Catch Box Theme Functions function unhook_catchbox_functions() { remove_action( 'catchbox_after_headercontent', 'catchbox_header_menu', 10 ); } add_action( 'init', 'unhook_catchbox_functions' ); add_action( 'catchbox_before_headercontent', 'catchbox_header_menu', 5 );
Then add the following CSS in your child theme style.css file.
#header-content { clear: both; }
January 15, 2014 at 10:18 pm #19332corinnecollins.comMemberAwesome! Thank you soooo much, worked like a charm.
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Is it possible to move primary menu’ is closed to new replies.