|
Breadcrumbs are great for navigational purposes and help users cruise around your SharePoint site with assisted ease. Sometimes you may want a page to not have the breadcrumb trail and you may be looking for an easy way to get rid of them on that specific page. Follow along on this easy tutorial to view how to do just this!
Using CSS and the Content Editor Web Part we will make breadcrumbs disappear with a few lines of code. Follow along through the following steps and you'll know be removing those breadcrumbs in no time. Please note you must have the appropriate site permissions to complete this tutorial. Before:  After:  1. Navigate to the page you wish to not have the breadcrumb navigation 2. Insert a Content Editor Web Part by clicking on Site Actions > Edit Page and clicking the Add a Web Part 

3. Navigate to the CEWP and enter into the appropriate zone and modify the Web Part 
4. Click on Source Editor and enter the following lines of code: td.ms-titlearea { display:none; }
Now apply the changes and you will see the breadcrumbs are no longer there. Note: You may choose to hide the webpart by expanding the layout tab and clicking "hidden" 
|