Hello, I am for the first time implementing breadcrumbs(I should have done this a long time ago) on my website. I think it is been done correctly so far, what I can’t seem to do is to get to where one can change the divider color. Thank you!
You can change a local CSS variable like this by adding your own CSS class:
Change the color to your liking, you can replace "red"
with any color value you prefer.
You can use color names (like "blue"
, "green"
, "yellow"
, etc.) or hexadecimal color codes ("#RRGGBB"
format) to specify the color you want.
.divider-color {
--bs-breadcrumb-divider-color: red;
}
Thank you! Once again, you are a very good person…