Tagged: Full Frame Pro, header, menu
- This topic has 3 replies, 2 voices, and was last updated 7 years, 10 months ago by Mahesh.
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
January 12, 2017 at 5:56 am #106957MarkParticipant
I’d like:
1. The Primary Menu to appear under the Header.
2. The Header to show at the top of the page.Is this possible?
January 12, 2017 at 10:14 am #106965MaheshParticipant@calsurance: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s
functions.php
add the following CSS:add_action( 'init', 'move_header_above_primary' ); function move_header_above_primary(){ remove_action( 'fullframe_header', 'fullframe_primary_menu', 30 ); add_action( 'fullframe_header', 'fullframe_primary_menu', 71 ); }
Regards,
MaheshJanuary 15, 2017 at 5:07 am #107101MarkParticipantThank’s Mahesh!
If I do that will the content still appear beneath the header and menu on sample pages?
January 15, 2017 at 12:57 pm #107116MaheshParticipant@calsurance: Yes, it will only move the menu beneath the header as you wanted. All remains the same.
Regards,
Mahesh -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘Full Frame Pro: Can I switch the location of the Header and Primary Menu’ is closed to new replies.