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

#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