Hi there, I would like to move the top grey “Free Delivery” header bar to below the Nav menu, similar to the turquois bar seen in Atelier.
Previously, your support team has provided 2 codes to add on the function.php file, but both did not work for me. Could you kindly advise how to make this work, or provide the full function.php file?
1st Attempt:
Please install and activate the supplied child theme, inside the child theme functions.php
file add this:
remove_action( ‘nota_container_start’, ‘nota_header_banner_bar’, 20 ); add_action( ‘nota_main_container_start’, ‘nota_header_banner_bar’ );
2nd Attempt:
Try this instead:
function nota_child_headerbanner_move() {
remove_action( ‘nota_container_start’, ‘nota_header_banner_bar’, 20 );
add_action( ‘nota_main_container_start’, ‘nota_header_banner_bar’ );
}
add_action( ‘init’, ‘nota_child_headerbanner_move’ );
Best Regards
Gene