Turn off breadcrumbs everywhere except bbpress

I’ve had to turn on breadcrumbs for bbpress, but it is now displaying breadcrumbs across the entire site. How do I turn breadcrumbs off so they ONLY display within bbpress?

And how do I move the breadcrumbs to display top-left, just above the grey content box. In this example, beneath the main title and above ‘create new topic’, outside of the box?

Thanks!

Hey @demonboy,

To achieve that, please add this custom css.

.bbpress .x-landmark {
    display: block;
    width: 100%;
    margin-bottom: 25px;
}

.bbpress .x-landmark-breadcrumbs-wrap {
    display: block;
}

.bbpress .x-landmark-breadcrumbs-wrap .x-breadcrumbs-wrap {
    display: block;
    text-align: left;
    width: 100%;
}

.bbpress .x-header-landmark {
    padding-bottom: 0;
}

.x-landmark-breadcrumbs-wrap .x-breadcrumbs-wrap {
    display: none;
}

Hope it works.

1 Like

Spot on, albrechtx! Thank you! :raised_hands:

You’re always welcome @demonboy.

The following might help if you need some changes in design:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.