MyBB Community Forums

Full Version: Remove breadcrumb from certain pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I want to be able to remove the breadcrumb navigation from certain pages and but leave active on some. Does anyone know of a way?
From which pages you want to hide the navigation?

You can hide the navigation with CSS, using the display property, in a specific template

For example, if you want to hide the navigation in the index page, open the Index Page Templates > index and add in the tag <head>:

<style>
.navigation {
 display: none;
}
</style>

Or if you want hide the nav in specific topics/forums, you must use Template Conditional.
*SOLVED*

Thank you Mipher!

I just had to change navigation to breadcrumb

<style>
.breadcrumb {
display: none;
}
</style>