Page 1 of 1

Hide certain tool bar elements

Posted: 02 Aug 2016
by Jimmy Daresta
How would one go about hiding or disabling certain toolbar elements. In this case I want to hide the Workflows button.

Re: Hide certain tool bar elements

Posted: 03 Aug 2016
by Dmitry Kozlov
Put the following code into CSS-editor:

Code: Select all

#Ribbon\.ListForm\.Display\.Actions-LargeMedium-0-2 {
	display: none;
}

Re: Hide certain tool bar elements

Posted: 03 Aug 2016
by Jimmy Daresta
Thank you!