Is there a way to remove the 'home' part of the br...
# suitecommerce
f
Is there a way to remove the 'home' part of the breadcrumb in SCS?
s
CSS is probably the easiest way
Copy code
.global-views-breadcrumb li:nth-child(-n+2) {
    display: none
}
f
this is for SCS 2021.1.6... it looks like it's not using <li> but divs... I was able to get this to work for the home part at least: .breadcrumbs a:first-child {    display: none; }
thanks for the tip!
netsuite halo 1