Home Forums Basel support forum Login icon does not show

Login icon does not show

Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #134614

    3p1demicz
    Participant

    Hello,

    I have “MY ACCOUNT LINKS”
    “Show in the HEADER
    Show links to login/register or my account page in the header” and “Login form in sidebar”
    both eabled. With style ICON

    but the icon does not show up, even if changed to text.
    Cart and Search for does show up. Any suggestions?

    #134625

    Hello,

    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'
    			)
    		)	
    	);
    }

    Best Regards

    #134636

    3p1demicz
    Participant

    Hello,

    Thank you. This actually created another container under the original container where it moved my menu. See attached.

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

    Artem Temos
    Keymaster

    Try to use the following code instead

    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',
    					)
    				)	
    			),
    		);
    }
    #134672

    3p1demicz
    Participant

    that solved it. thanks

    #134677

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

    #134711

    3p1demicz
    Participant

    Hi!

    How to show the icon on mobile please ? 🙂

    Thanks!

    #134759

    Artem Temos
    Keymaster

    Sorry, but there is no such ability in our Basel theme.

    #135267

    3p1demicz
    Participant

    Ok no worries,

    But can you help me make the icon white? is the only black icon and even when i try to change all the css colors to white it is still black

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

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .right-column .header-links li.my-account a {
        color: white;
    }

    Best Regards

    #135398

    3p1demicz
    Participant

    Hi,

    Did not work. Also tried

    body .right-column .header-links li.my-account-with-icon a {
    color: white;
    }

    #135442

    Hello,

    Please provide the site admin access to the private area.

    Best Regards

    #135448

    3p1demicz
    Participant

    Ok thanks, see in private

    #135449

    Hello,

    You have not inserted the CSS as I wrote, insert and check.

    Best Regards

    #135450

    3p1demicz
    Participant

    Yes I did, it did not work so i delted the CSS (before i celared cache)

    Now i put it back there, still does not work

    #135475

    Hello,

    have a look at the screen https://gyazo.com/09725606421422b0261bcfcecf36ee0f

    Best Regards

    #135492

    3p1demicz
    Participant

    Hi,

    If you are not logged in – ie. in anonymouse window the icon is black.

    #135507

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .right-column > div ul li a, 
    body .right-column > div > a {
        color: white;
    }

    Best Regards

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