Home › Forums › Basel support forum › Login icon does not show
Login icon does not show
- This topic has 17 replies, 3 voices, and was last updated 5 years, 7 months ago by
Elise Noromit.
-
AuthorPosts
-
July 26, 2019 at 2:51 pm #134614
3p1demiczParticipantHello,
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 ICONbut the icon does not show up, even if changed to text.
Cart and Search for does show up. Any suggestions?July 26, 2019 at 5:56 pm #134625
Elise NoromitMemberHello,
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
July 26, 2019 at 6:50 pm #134636
3p1demiczParticipantHello,
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.July 27, 2019 at 10:16 am #134670
Artem TemosKeymasterTry 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', ) ) ), ); }
July 27, 2019 at 10:48 am #134672
3p1demiczParticipantthat solved it. thanks
July 27, 2019 at 12:15 pm #134677
Elise NoromitMemberYou are welcome! If you have any questions please feel free to contact us.
Best Regards
July 27, 2019 at 5:13 pm #134711
3p1demiczParticipantHi!
How to show the icon on mobile please ? 🙂
Thanks!
July 28, 2019 at 10:10 am #134759
Artem TemosKeymasterSorry, but there is no such ability in our Basel theme.
July 31, 2019 at 7:33 am #135267
3p1demiczParticipantOk 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.July 31, 2019 at 12:31 pm #135329
Elise NoromitMemberHello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .right-column .header-links li.my-account a { color: white; }
Best Regards
July 31, 2019 at 5:54 pm #135398
3p1demiczParticipantHi,
Did not work. Also tried
body .right-column .header-links li.my-account-with-icon a {
color: white;
}August 1, 2019 at 6:32 am #135442
Elise NoromitMemberHello,
Please provide the site admin access to the private area.
Best Regards
August 1, 2019 at 7:07 am #135448
3p1demiczParticipantOk thanks, see in private
August 1, 2019 at 7:15 am #135449
Elise NoromitMemberHello,
You have not inserted the CSS as I wrote, insert and check.
Best Regards
August 1, 2019 at 7:16 am #135450
3p1demiczParticipantYes 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
August 1, 2019 at 8:17 am #135475
Elise NoromitMemberAugust 1, 2019 at 9:18 am #135492
3p1demiczParticipantHi,
If you are not logged in – ie. in anonymouse window the icon is black.
August 1, 2019 at 10:27 am #135507
Elise NoromitMemberHello,
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
-
AuthorPosts
- You must be logged in to create new topics. Login / Register