Ecommerce header with logo on left side
-
Hi Xtemos,
I am trying to use the ecommerce header, but I do not get this in the right layout.
I would like to have the logo on the left, main menu in the middle and the ‘my account link and log out’ link on the right side)
When i use the eccommerce header, i have the situation as in the attachment, but I would the logo on the left.
Is it possible to have the layout as in the attachement (with the logo on the left?) and can you advise how to do this?
Thanks!
Attachments:
You must be
logged in to view attached files.
Hello,
Try to use “Simplified” header layout and add the following code snippet to the functions.php file in your child theme
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
Yes, this did the trick again!
Thanks