Guest Posted March 2, 2021 Share Posted March 2, 2021 Site URL: https://www.bathandcountyclub.com/ Hi, I have tried using the standard code (below) to remove the 'Sign in' link but this doesn't work to remove it from the navigation menu. I have my Member's Sign In button down near the footer. My issue is that if people use the 'Sign in' link along the navigation menu, it takes them to their account but they then have to sign in AGAIN in the Members Sign In button below to gain access to the Members' Only content. So I would prefer to either remove the link from the nav menu or replace it with the Members Sign In link instead. Any help would be greatly appreciated!! .main-nav ul li.user-account-link { display: none; } Link to comment
tuanphan Posted March 6, 2021 Share Posted March 6, 2021 Add to Design > Custom CSS /* remove sign in */ li.user-account-link.loaded { display: none !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Guest Posted March 25, 2021 Share Posted March 25, 2021 Thank you! Do you know what code is needed to change the name of the menu link from 'Sign in' to 'Member log in' ? Many thanks! Cristina Link to comment
tuanphan Posted March 29, 2021 Share Posted March 29, 2021 On 3/25/2021 at 9:47 PM, cristinarrrr said: Thank you! Do you know what code is needed to change the name of the menu link from 'Sign in' to 'Member log in' ? Many thanks! Cristina Try remove above & use this code li.user-account-link.loaded { visibility: hidden; } li.user-account-link.loaded:before { visibility: visible; content: "Member Login"; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.