Hi wonder if anyone can help - i have tried 3 solutions from this board none of which worked and they all involved changing the theme liquid above the head
we are trying to change the background colour of the breadcrumbs box in the code
any suggestions welcome url and picture here https://kitout-fitness.co.uk/collections/crossfit-chiltern/products/womens-vest
thanks
Hi Shane
Would you like to do like this ?
Thanks!
no sorry a full bar all the way across and change text to white thanks
Hi @Shane_h
you can change any color as you want here:
.dynamic-page-width.breadcrumbs{
background: antiquewhite;
}
1 Like
Hi @Shane_h
let try this:
.dynamic-page-width.breadcrumbs {
background: black;
}
.dynamic-page-width.breadcrumbs > ul > li {
color: white;
}
.dynamic-page-width.breadcrumbs > ul > li .arrow{
border-color: white;
}
the result will be:
Hi shane,
for white arrow
.breadcrumbs > ul > li .arrow {
border-color: #fff !important;
}
Thanks!
Is it possible to make it full width of the screen like the header bar ?
thanks
we need it to fill the screen on full width
Let try it:
#shopify-section-sections--23664574628169__breadcrumbs,
.dynamic-page-width.breadcrumbs {
background: black;
}
.dynamic-page-width.breadcrumbs > ul > li {
color: white;
}
.dynamic-page-width.breadcrumbs > ul > li .arrow{
border-color: white;
}
result:
its worked to a degree but the > symbols are not on the same level as the breadcrumbs it’s in your image as well

@Shane_h
let try this:
#shopify-section-sections--23664574628169__breadcrumbs,
.dynamic-page-width.breadcrumbs {
background: black;
}
.dynamic-page-width.breadcrumbs > ul > li {
color: white;
}
.dynamic-page-width.breadcrumbs > ul > li .arrow{
border-color: white;
top: 45%;
}
result:
perfect - one last question can we reduce the height of it please ?
let try this one @Shane_h
#shopify-section-sections--23664574628169__breadcrumbs,
.dynamic-page-width.breadcrumbs {
background: black;
}
.dynamic-page-width.breadcrumbs > ul > li {
color: white;
padding-block: 0;
}
.dynamic-page-width.breadcrumbs > ul > li .arrow{
border-color: white;
top: 45%;
}
result:
1 Like
thanks for your support with this as well 