Hi.
I have been trying to achieve the header image above the navigation as per the above instructions.
I have added the code snippets plugin and pasted the following code:
add_action( ‘after_setup_theme’,’craig_move_navigation’ );
function craig_move_navigation() {
if ( is_front_page () ) {
remove_action( ‘generate_after_header’, ‘generate_add_navigation_after_header’, 5 );
add_action( ‘generate_after_header’, ‘generate_add_navigation_after_header’, 15 );
}
}
It doesn’t seem to be working – any ideas what i am doing wrong?
The page in question is:
ph.konstructstudios.co.uk
Many thanks in advance.
Lee