i need to change the default drop down list options of the tinymce editor in wordpress to include 11pt
the default values are 8,10,12,14 i need to put 11 in this list , and to be effective for sure.
thanks in advance.
i need to change the default drop down list options of the tinymce editor in wordpress to include 11pt
the default values are 8,10,12,14 i need to put 11 in this list , and to be effective for sure.
thanks in advance.
You must be logged in to post a comment.
In your file use like this
tinyMCE.init({
…
theme_advanced_font_sizes : “10px,12px,14px,16px,24px”
});
So you can change the font size options by this way in your running file.