SharePoint 2013 - To hide ribbon menus from SharePoint Pages
Sometime its annoying to have ribbon control which exposes all the menu ( new item, settings, etc to have it on all the list view pages). In order to hide Item menu and control some sections from List view from ribbon, I used below style sheet. We can use other many to hide as we want. Some how we have to use the \ behind . for using this on style sheets as below
/*For to hide designer section*/
#Ribbon\.List\.CustomizeList {
display: none !important;
}
/*For to hide items section*/
#Ribbon\.ListItem-title {
display: none !important;
}
/*For to hide setting section*/
#Ribbon\.List\.Settings{
display: none !important;
}
/*For to hide list view section*/
#Ribbon\.List\.ViewFormat{
display: none !important;
}
/*For to hide page section*/
#Ribbon\.WikiPageTab-title{
display: none !important;
}
Happy Browsing!
Relax..
Relax..