Pages

Subscribe:

Wednesday, February 8, 2012

Hide "Recently Modified" From Quick Launch in SharePoint 2010



The “Recently Modified” on the Quick Launch is enabled by default. If you’re dealing with only a few pages and don’t want to mess with SharePoint Designer, here’s a quick solution to remove the “Recently Modified” link in SharePoint 2010.

1. Type in the CSS code below into Notepad. Save the file as a text file.
2. <style>
     .s4-recentchanges
      {
          DISPLAY:none;
      }
   </style>

3. Upload to file to your SharePoint site. Copy the link to the file by right clicking on the filename       then clicking on “Copy Shortcut”.
4. Go to Edit mode of the page where you want the “Recently Modified” link to disappear.
5. Add a Content Editor webpart (under Media and Content) on the page.
6. Edit the webpart.
7. In the Content Link box, paste the URL you copied in 2) above.
8. Under Appearance, choose “None” as the chrome type.
9. Click OK.

1 comments: