Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the Format select box, you can choose Heading 1, Heading 2 etc

How can I disable some of those options? Is it also possible to rename them? I want to only allow Heading 2 and Heading 3, and if possible, rename them to Heading and Sub-Heading.

I figured out how to rename them - in the language file. I edited the 'en-au.js' and then set { language: 'en-au' } but it hasn't seem to have worked.

share|improve this question

1 Answer

up vote 7 down vote accepted

Okay, so I changed the titles under en.js, and to disable the other formats, I used this format_tags: 'p;h3;h4' in the config.

share|improve this answer
6  
you can also change the config via javascript: CKEDITOR.config.format_tags = 'p;h1;h2' – Erik Aug 24 '11 at 20:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.