BreadCrumb Navigation in SharePoint 2013

In SharePoint 2010, Breadcrumb is used to navigate among the various SharePoint Pages. For no reason, this bread crumb feature is disabled in SharePoint 2013.

There are two ways of activating it in SharePoint 2013:

  1. Through Master Page
  2. Enable it through all pages through code.

Open the Master Page in SharePoint designer and look out for the following piece of code.

  1. <div class="ms-breadcrumb-dropdownBox" style="display:none;">  
  2. <SharePoint:AjaxDelta id="DeltaBreadcrumbDropdown" runat="server">  
  3. <SharePoint:PopoutMenu Visible="false" runat="server">  
Code after changes
  1. <div class="ms-breadcrumb-dropdownBox">  
  2. <SharePoint:AjaxDelta id="DeltaBreadcrumbDropdown" runat="server">  
  3. <SharePoint:PopoutMenu Visible="false" runat="server">  
You can remove the display:none attribute in the master page. That's it. BreadCrumb Navigation is back in SharePoint 2013

Happy SharePointing :-)