To hide the 'Recycle bin' and 'View all site contents' links from the home page,
just paste the following script in to contents editor web part.
var returnVar = document.getElementById("ctl00_PlaceHolderLeftNavBar_idNavLinkRecycleBin"); returnVar.style.visibility = "hidden";
var returnVar = document.getElementById("ctl00_PlaceHolderLeftNavBar_idNavLinkViewAll"); returnVar.style.visibility = "hidden";
No comments:
Post a Comment