1

enter image description here

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

user5495947
  • 35
  • 1
  • 8

4 Answers4

5

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;
}
Matt Kaufman
  • 748
  • 4
  • 12
0

GO to builder > Theme > Top Right corner > Edit CSS

Here it is source image

.forceCommunityGlobalNavigation .slds-list__item a, .forceCommunityGlobalNavigation .slds-list__item button {
    display: none;
}
Michał Dobi Dobrzański
  • 1,449
  • 1
  • 20
  • 19
0

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;
}
Charles Naccio
  • 328
  • 2
  • 6
0

What I've used and did the trick:

.forceCommunityThemeNav .mainNavItem:first-child {
    visibility: hidden;
    display: none;
}