Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

Is there a way to remove the bread crumb navigation in SharePoint 2010? Basically I don't want to see the site and subsite titles next to the logo that keep growing across the top portion of the page.

share|improve this question

3 Answers

You can remove the breadcrumb control from the master page. If you want to do it for just few pages, override the content placeholder from master in which breadcrumb resides.

share|improve this answer

To remove both site and subsite titles next to the logo, use this style.

.s4-titletext
{
    display: none;
}

Or with jQuery

$(".s4-titletext").hide();
share|improve this answer

Using the following CSS worked for me without a problem:

.s4-titletext h2,
.s4-titlesep
{
    display: none;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.