I am trying to switch menues on woocommerce
i want the store menu to be shown on the right and the cart menu on the left
i have this code written in wpheader.php in xchild theme wp-content/themes/x-child/framework/legacy/cranium/headers/views/ethos
<?php
// =============================================================================
// VIEWS/ETHOS/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Ethos.
// =============================================================================
?>
<?php x_get_view( 'global', '_header' ); ?>
<?php x_get_view( 'global', '_slider-above' ); ?>
<header class="<?php x_masthead_class(); ?>" role="banner">
<?php x_get_view( 'ethos', '_post', 'carousel' ); ?>
<?php x_get_view( 'global', '_topbar' ); ?>
<?php x_get_view( 'global', '_navbar' ); ?>
<div id="cart">
<?php if ( x_is_shop() || x_is_product_category() || is_product_tag() ) : ?>
<div style="float:left;"><?php ubermenu( 'cart' , array( 'theme_location' => 'Cart-Menu' ) ); ?></div>
<div style="float:right;"><?php ubermenu( 'store' , array( 'theme_location' => 'Store-Menu' ) ); ?></div>
<?php else : ?>
<?php endif; ?>
</div>
<div id="star">
<?php if (is_woocommerce() || is_page( array( 3010, 3007 ) ) ) : ?>
<?php else : ?>
<?php ubermenu( '5776' , array( 'theme_location' => 'Secondary-Menu' ) ); ?>
<?php endif; ?>
</div>
<?php x_get_view( 'ethos', '_breadcrumbs' ); ?>
</header>
<?php x_get_view( 'global', '_slider-below' ); ?>
<?php x_get_view( 'ethos', '_landmark-header' ); ?>
i am trying to switch the #x-navbar to store menu and the
#star menu with cart.
could i get any help here please?