XF 1.2 bread crum

ld762

Member
I'd like to change the bread crum so that the last item shows up in a different background color.
I was sort of able to do it but only able to change the background for the text and not the triangle looking thing.

How can I make this happen?
 
Looks like extra specificity is needed:
Code:
.breadcrumb .crust:last-child a.crumb {
  background-color: red;
}


.breadcrumb .crust:last-child .arrow span {
  border-left-color: red;
}

Place it into EXTRA.css and it'll work.
 
Top Bottom