Frequently I get requests on how to hide the breadcrumb navigation links on a page in SharePoint. For a single page, you can add a content editor web part to the page and then add the following “code” in the Source Editor.
<style type=”text/css”>
#ctl00_PlaceHolderTitleBreadcrumb_ContentMap {display=none;}
</style>
If you want to hide the breadcrumbs on all pages, you can add the code to the master page or an alternate css.
Advertisement
very very handy, thank you so much!