Hide profile button for logged-in users

In ClickHelp, it is possible to hide the profile button for logged-in users but still show the Log In link for everyone else.

Preview

Before hiding the profile link
Before hiding the profile link

After hiding the profile link
After hiding the profile link

How to implement

Add the following code to your portal Branding CSS.

CSS Code

CSS
.BaseMaster_profileLink[aria-label="Log In"] {
display: block;
}

.BaseMaster_profileLink {
display: none;
}
Alternatively, you can disable both the Log In link and the profile button via the Reader UI settings.