Remove the ‘breadcrumb’ at top of pages

To aid navigation, you can use a ‘breadcrumb’ at the top of pages. However, if you need to remove the ‘breadcrumb’, the simplest way is to use:

3.2+ the Customize>Content>Breadcrumb checkboxes.
breadcrumb

3.1 the Customiz’it!>Pages & Posts Layout and untick the tickbox.

In CSS, this can also be done with:

Where to copy/paste this code?
The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme with Customizr here.

/* START OF Remove the ‘breadcrumb’ at top of pages */
.breadcrumb {
display: none;
}
/* END OF Remove the ‘breadcrumb’ at top of pages */

 

37 thoughts on “Remove the ‘breadcrumb’ at top of pages”

Comments are closed.