Hi there,
1. Add this PHP code so we can move out the search bar from the navigation area to the after header area:
add_action('wp', function() {
remove_action( 'generate_inside_navigation', 'generate_navigation_search',10 );
add_action( 'generate_after_header', 'generate_navigation_search' );
});
Adding PHP: https://docs.generatepress.com/article/adding-php/
2. Add this CSS code, feel free to remove or change the background-color from the code:
.navigation-search.nav-search-active {
position: relative;
background-color: red;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/