Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #106957
    Mark
    Participant

    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?

    #106965
    Mahesh
    Keymaster

    @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,
    Mahesh

    #107101
    Mark
    Participant

    Thank’s Mahesh!

    If I do that will the content still appear beneath the header and menu on sample pages?

    #107116
    Mahesh
    Keymaster

    @calsurance: Yes, it will only move the menu beneath the header as you wanted. All remains the same.

    Regards,
    Mahesh

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.