[SalesForce] Can “Follow,edit and delete” in record banner of case detail page be hidden using CSS

enter image description here

I found in one of the conversation,which is used to hide the "Ask a Question" button in CSS branding editor of Customer community napili template.

.siteforceNapiliFooter #askCommunity { display: none; }

Similarly is there an option to hide "Follow,edit and delete" in record banner of case detail page ?

Best Answer

You need to remove those from the Salesforce1 Actions on the Page Layout. That will get rid of them for ya.

Via CSS you can remove the follow by plugging this into the Custom CSS in the branding editor:

.not-selected{ visibility: hidden }