Home Forums Basel support forum Position of logo and menu from E-Commerce header

Position of logo and menu from E-Commerce header

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

    fbascuiz
    Participant

    Hello, I want to edit the position of the logo and menu on the E-Commerce header style,

    It`s possible by css code?

    Thanks a lot!

    #26842

    Artem Temos
    Keymaster

    Hi,

    You can use simplified header layout instead. And if you need my account links try to add the following code snippet to the functions.php file in the 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

    #26882

    fbascuiz
    Participant

    Works perfect!!!, thanks a lot.

    #26897

    Artem Temos
    Keymaster

    You are welcome!

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

The topic ‘Position of logo and menu from E-Commerce header’ is closed to new replies.