I was asked today about hiding the Recently Modified menu from SharePoint 2010 Team sites. If you aren’t familiar with the menu, here is a screenshot of it:
I did some poking around and it seems that the wiki pages add
<style type="text/css">
.s4-recentchanges { display: none; }
</style>
You can either add that to the master page or custom CSS for your SharePoint site or you could add it to an individual page as discussed here: http://blog.drisgill.com/2010/09/sp2010-branding-tip-12-hiding-quick.html
Great advice! It worked!
PlaceHolderLeftActions is used to display Groups in Site Settings > Groups Section
Hi!
It worked, but strangely, it only worked for my login. When I’m logged in to my own Sharepoint account, “recently modified” is gone. But when other users log in to their accounts, it still shows up on theirs..
Any idea why?
Thank you!
Alex
Alex, publish and approve whatever you added the CSS to
Hi Randy,
I tried that already… cos I normally edit directly in Sharepoint Designer (the “edit page” function and “page” tab are disabled on our Sharepoint site, and I have no idea how to reactivate it. Any ideas?)
I tried this instead, and it worked:
Thanks!!
My apologies, made an error on my last post.
For my company’s Sharepoint site, adding this:
.s4-recentchanges{ DISPLAY:none; }
to the tag of the .master file will populate it for the rest of the site except the home page. for the home page to not show “recently modified”, i had to code this directly to home.aspx itself:
Oops… i think the comments are set not to accept html/css. modified my post.
For my company’s Sharepoint site, adding this:
.s4-recentchanges{ DISPLAY:none; }
to the head tag of the .master file will populate it for the rest of the site except the home page. for the home page to not show “recently modified”, i had to code this directly to home.aspx itself:
(div style=”display:none”)
(SharePoint:RecentChangesMenu runat=”server” id=”RecentChanges”/)(/div)
*please replace () with