Tuesday 29 May 2012

Hiding Navigation up\Breadcrumb icon on Ribbon in SharePoint 2010


I have written a Post earlier about how to hide Hide Edit Page,Navigate Up,Browse and Page tab button in Ribbon with CSS but I got questions about how to just hide the Navigation Up button with the Edit page icon that I have to above example.

So here is a quick tip on hiding just Navigation up\Breadcrumb icon with CSS -


<style>
.s4-breadcrumb-anchor
{
visibility: hidden;
}
</style>


Related Post : Hide SharePoint 2010 Site Title, Title Icon, Title Text, Page Description with CSS

Ads by Google

2 comments:

  1. Thanks but where will I add this code

    ReplyDelete
    Replies
    1. Open your site in sharepoint designer, create CSS file and paste above code save it, Give the CSS file link in Master page. Enough it will work

      Delete