Friday, August 24, 2012

SharePoint 2010: Hide Recently Modified Items

In SharePoint 2010 we all are familiar with the following annoying quick-launch menu:


So if we have to hide this then we have to write .css for this in master page or in .css file.

<style type="text/css">
    .s4-recentchanges
    {
        display:none;
    }
</style>

No comments:

Post a Comment