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
Thanks but where will I add this code
ReplyDeleteOpen 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