XF 2.1 Remove Top Breadcrumb

JamesBrown

Well-known member
Licensed customer
Can anyone tell me how I can remove the just the top breadcrumb from all pages? Cheers
 
An update on this in 2023! The code works fine to hide the bottom breadcrumb for those that need it. This post quickly solved that for me. The bottom instruction is:

CSS:
.p-breadcrumbs--bottom {
     display: none;
}
 
Back
Top Bottom