Home Forums Basel support forum exchange position the logo and menu-main

exchange position the logo and menu-main

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #19387

    tiantzer
    Participant

    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.

    #19394

    Artem Temos
    Keymaster

    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

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