vote up 0 vote down star

I'd like to only allow h2 and h3, but I'm not sure how to edit the list in the dropdown shown by adding the 'formatselect' button.

flag

1 Answer

vote up 0 vote down check

in your tiny mce init file

tinyMCE.init({
    ...
    theme_advanced_blockformats : "h2,h3"
});

docs

link|flag
Awesome, that did the trick. Thanks! – zlog Aug 20 at 15:22
Although, being a rails plugin, I fixed it in the controller in: uses_tiny_mce( ... :theme_advanced_blockformats => "h2,h3,p" ... ) – zlog Aug 20 at 15:23

Your Answer

Get an OpenID
or

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