hi @conschneider thanks, I see the cart to moved to the upper area, but its overlapping with the menu there, ( I hided the search bar with provided code below, can you tell how to keep the menu on the left side of the cart? thank you. ) please see the screen here
————————————————————————————-
`/* Increase width of Secondary Menu and align it to right of page when search bar remove */
@media (min-width: 768px) {.storefront-secondary-navigation.woocommerce-active .site-header .secondary-navigation {width: 69.5652173913%; float: right;margin-right: 0;}
————————————————————————————-
/**
* Disable the Search Box in the Storefront Theme
*/
add_action( ‘init’, ‘remove_sf_actions’ );
function remove_sf_actions() {
remove_action( ‘storefront_header’, ‘storefront_product_search’, 40 );}
———————————————————————————–