Home Forums Basel support forum Ecommerce header with logo on left side

Ecommerce header with logo on left side

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #14538

    budelski
    Participant

    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.
    #14541

    Artem Temos
    Keymaster

    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

    #14556

    budelski
    Participant

    Yes, this did the trick again!
    Thanks

    #14559

    Artem Temos
    Keymaster

    Great, you are welcome!

Viewing 4 posts - 1 through 4 (of 4 total)