Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

Ho can I remove the recycling bin and the 'All Site Content' link from the quick launch or remove the quick launch altogether

share|improve this question

1 Answer

CSS, create for instance a CSS file and reference it in the site's Alternate CSS URL, or you could add it to your masterpage if you want to remove it altogether.

The content of the CSS-file could be this (to hide the whole quicklaunch):

/** This stylesheet is used in sites where the quicklaunch is not needed **/
div#s4-leftpanel {
    display: none !important;
    visibility: hidden !important;
}
.s4-ca {
    margin-left: 0px !important;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.