Hide the ChangeView option from SharePoint 2010 Ribbon
Based on the KISS principle, there has to be an easier way - and there it is:
As an example, if you want to hide the change view, then you can just use the following CSS:
<style>
#Ribbon\.List\.CustomViews\.DisplayView-Medium{
display:none;
}
</style>
Comments
Post a Comment