[SalesForce] Hide My Account in Napili Community

I built a Community with the Napili Template. Now I want to hide "My Profile" and "My Account" (under "Home") from the "Profile Header" component's picklist. How can I do that? I searched a solution and someone suggests to modify the community's css, but where can I find and modify the CSS?

Best Answer

If you select the appropriate scope in your CSS, you can hide options in the Profile Header component:

For the profile menu option:

.profile.uiMenuItem{
    display: none;
}

You can modify the CSS under the branding options enter image description here

However, this will affect all your users.

If you would prefer this to change based on profile (your admins might want to be able to access profiles easily) You might want to use Custom Theme Layouts, the feature is documented here

Related Topic