exchange position the logo and menu-main
-
hi, thanks for helping again.
I’m currently using the E-Commerce for header setting, I’m wonder If I can exchange the Logo and main-menu position. I would like change the logo position from center to the left and move the main-menu to the center.
You might told me just switch to the simplified header setting, because I want to keep the my account / login section on the header and only e-commerce have that section.
Hi,
Try to set “Simplified” layout and add the following code snippet to the functions.php file in the child theme to add ‘login/register’ links.
add_filter( 'basel_header_configuration', 'basel_custom_header_configuration', 1, 1 );
function basel_custom_header_configuration() {
return array(
'container' => array(
'wrapp-header' => array(
'logo',
'main_nav',
'right-column' => array(
'header_links',
'search',
'wishlist',
'cart',
'mobile_icon',
)
)
),
);
}
Regards