Hide Breadcrumb on a single page in MOSS 2007 without using SharePoint Designer
by Radhika • June 2, 2010 • MOSS 2007 • 2 Comments
In this article we will see how we can hide the BreadCrumb in a single page. We are also going to do it without using the SharePoint Designer. We are going to do it by using a content editor web part.
1. Go to Site Actions –> Edit Page –> Add a Content editor web part
2. Write following code in to content editor web part
<style rel="stylesheet" type="text/css" />
.ms-pagebreadcrumb{display:none; }
</style>
Save the changes and exit edit mode or publish the page
Step 3 : Now your page should look like this


nice work my friend this was causing me agony until I found your post.
Any way of doing this for all pages on the site WITHOUT using Designer? The code u supplied works well on the main page but when I get to subsequent pages it does not work. Thx.