Here is How in MOSS 2007: Just add
the Content Editor Web part and place the below code ( Add it in Master page if
you want to apply for all sites) :
<style>
.ms-quicklaunchheader{display:
none;}
.ms-recyclebin{display:
none;}
</style>
For SharePoint 2010, CSS
classes are little different
/*To
Hide both */
.s4-specialNavLinkList
{
display:none;
}
/*
To Hide Recycle bin */
.s4-rcycl
{
display:none;
}
/*
To Hide "All Site Content" */
#ctl00_PlaceHolderLeftNavBar_PlaceHolderQuickLaunchBottom_PlaceHolderQuickLaunchBottomV4_idNavLinkViewAllV4
{
display:none;
}
Want to Hide View All Site Content / Recycle Bin Links from
everyone, except Site Owners?
Yes, You can set the permission string of these links to hide it
from all users except the specified in PermissionString property.
Open your master page in SharePoint designer (either MOSS 2007 or
SharePoint 2010).
In Design view select "All Site content Link"
in Tag Properties, Go to PermissionString and Enter the permission
string. Say, you want this link to be available only to Site owners, then
enter: "FullMask"
No comments:
Post a Comment