EditMode Help

Permalink 1 user found helpful
How can i disable options from edit mode topbar, my client keeps messing up content because he moves the options in design option, can i remove it from the top bar?!

ricardonava
 
mkly replied on at Permalink Best Answer Reply
mkly
The easiest way would be through css.

For example the design button has an id attribute of ccm-nav-design

So if you add this
#ccm-nav-design {
  display: none !important;
}

you should be able to remove it from view.
ricardonava replied on at Permalink Reply
ricardonava
Thanks you very much, had a really big headache because of that problem but never thought of doing that. Thank You again!