Reputation: 35
I am very new to saleforce and playing around to get to know how things work. How do i remove that home button there and can i move that cases and products menu items to right side?
Can you please help check
Upvotes: 1
Views: 5078
Reputation: 31
What I've used and did the trick:
.forceCommunityThemeNav .mainNavItem:first-child {
visibility: hidden;
display: none;
}
Upvotes: 0
Reputation: 1
GO to builder > Theme > Top Right corner > Edit CSS
.forceCommunityGlobalNavigation .slds-list__item a, .forceCommunityGlobalNavigation .slds-list__item button {
display: none;
}
Upvotes: 0
Reputation: 358
In the latest version of Salesforce/Experience Builder the following can be used to hide just the home tab or the entire navigation menu which is what I needed.
Home tab
.themeNavContainer:first-child {
visibility: hidden;
display: none;
}
Entire nav menu
nav {
display: none;
visibility: hidden;
}
Upvotes: 0
Reputation: 808
You can use a CSS hack to hide the Home icon and option
Click on the Pen icon in the builder and then the CSS button next to the word Branding at the top.
.navigationMenuNode:first-child {
display: none;
visibility: hidden;
}
Upvotes: 5