Skip to main content
Question

Ability to hide/ disable or format breadcrumbs on non-custom pages

  • October 10, 2024
  • 1 reply
  • 17 views

Laurenseife

We’d like to move our breadcrumbs to below our search banner, disable it, or change the color so it does not go from blue, gray to blue (similar to the GS SS example) 

 

Does anyone know how I can do that on on pages where customization is not supported with either code or a hack to color the background of the breadcrumbs to appear in another color and the text to appear in another color?

 

 

1 reply

Kenneth R
Forum|alt.badge.img+5
  • Expert ⭐️⭐️
  • October 16, 2024

Hey@Laurenseife - you can change the background color and the text color of just the breadcrumb element using these bits of CSS.  In this example the background color is black and the text is white.

.sitewidth.breadcrumb-container {
background-color: #000000;
}

.breadcrumb * {
color: #FFFFFF !important;
}