As designed Last breadcrumb item missing? Or should the last arrow be hidden?

W1zzard

Well-known member
Affected version
2.0.0
Shouldn't the last arrow be hidden? Or show a non-link item "Resolved bug reports [2.x]" ?

gzq1iibxzh.jpg
 
That's just how we chose to design it. It's actually consistent with XF1 (in that each crumb was an arrow)
 
Ah, I get it. Looks slightly odd though, maybe it's just me :)

Fix, in case I'm not the only one who prefers to hide the last arrow
Code:
.p-breadcrumbs > li:last-child::after {
    content: '';
}
 
Top Bottom