Home Forums Basel support forum My Account icon in header

My Account icon in header

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #86573

    Maikel
    Participant

    Hi support,

    I would like to have a ‘My account’ icon in right area with shopping cart and wishlist icon (see image)

    But I do not know how? (see image)

    Best regards,

    Maikel

    Attachments:
    You must be logged in to view attached files.
    #86593

    Hello,

    You need to switch to “E-Commerce” layout in the Theme Settings > Header > Layout

    In addition, you need to enable My account link in the header.

    Best Regards

    #86643

    Maikel
    Participant

    Hi support,

    I turned both things on (see 2 image).

    But unfortunately it doesn’t work.

    Best regards,

    Maikel

    Attachments:
    You must be logged in to view attached files.
    #86666

    Artem Temos
    Keymaster

    By default, this header layout doesn’t have Login/Register link. But you can add it manually placing 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',
    				'widget_area',
    				'right-column' => array(
    					'header_links',
    					'search',
    					'wishlist',
    					'cart',
    					'mobile_icon',
    				)
    			)
    		),
    		'navigation-wrap' => array(
    			'container' => array(
    				'main_nav'
    			)
    		)	
    	);
    }
    #86680

    Maikel
    Participant

    Great support!

    Can these three icons also stand side by side (see image)?

    Best regards,

    Maikel

    Attachments:
    You must be logged in to view attached files.
    #86733

    Hello,

    Navigate to the Theme settings > Header >

    header layout and increase the width of the right column http://prntscr.com/ldfq3d

    Best Regards

    #87880

    Maikel
    Participant

    You are a hero, great support!!

    Finally, I want to reduce and center my search bar in the header (see image).

    Thank you for your help!

    Best regards,

    Maikel

    Attachments:
    You must be logged in to view attached files.
    #87952

    Hello,

    Please add this custom CSS to the Theme Settings > Custom CSS:

    .widgetarea-head .search-extended {
        max-width: 50%;
        margin: 0 auto;
    }

    Best Regards

    #88304

    Maikel
    Participant

    Great support!! Thank you very much!

    I see that my ‘wish list’ icon in the header turns white when I touch it with my mouse (see image).

    Is this also possible for ‘my account’ icon?

    Thank you for your information!

    Best regards,

    Maikel

    Attachments:
    You must be logged in to view attached files.
    #88364

    Hello,

    No, unfortunately, the is no option to do that with the icon.

    Best Regards

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