ld762 Member Dec 5, 2013 #1 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?
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?
Jeremy in memoriam 1991-2020 Dec 5, 2013 #2 Code: .crumbs:last-child { background-color: red; } Should do it. Upvote 0 Downvote
ld762 Member Dec 5, 2013 #3 I added it to breadcrum.css but it didn't change anything. Am I doing it wrong? Upvote 0 Downvote
Jeremy in memoriam 1991-2020 Dec 5, 2013 #4 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. Upvote 0 Downvote
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.
ld762 Member Dec 5, 2013 #5 Jeremy said: Looks like extra specificity is needed: Place it into EXTRA.css and it'll work. Click to expand... It works! I've been banging my head for a week over it now. Awesome thanks. Upvote 0 Downvote
Jeremy said: Looks like extra specificity is needed: Place it into EXTRA.css and it'll work. Click to expand... It works! I've been banging my head for a week over it now. Awesome thanks.