I was wondering how I can remove the footer which shows the paragraph, etc. selector from the editor?
I have checked all the settings in admin section and couldn't find anything related to this?

CommentFileSizeAuthor
Footer.png7.47 KBWoozyDuck
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

WoozyDuck’s picture

is it not possible to remove this footer section at all?

jcisio’s picture

Status: Active » Fixed

Two solutions:
- To keep the status bar, remove the text: in your config.js add this:
config.removePlugins = 'elementspath';
- To remove (hide) the whole status bar, use this css:
.cke_bottom {display: none;}

With the second, as the status bar is hidden, you can't resize the editor.

WoozyDuck’s picture

Thank you very much.
I wish there was an option in Drupal module to turn this on or off so I wouldn't have to touch the code in config file.

jcisio’s picture

You can move your config file to your theme folder. Even better, you can put your code in the CKEditor settings page.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.