Ok... running TS 7.3 and TinyMCE 3.12 I believe.
In our old TS 6.7 version, we had the old Ekton editor that littered our HTML code with [html]
hello world[/html] tags.
Our users would format normal text to something similar:
[html]
Hello World
[/html]
Now, font size 2, resembled normal 12pt font, so it looked right to our users.
In the new tinyMCE editor, [html]
[/quohtmle] is the equivalent of [html][/html] which is equal to 10pt font...
So thousands of lines of text are now being converted to [html][/html] and making it look like 10pt font...
So, I found the config file: httpd\iw\tinymce\jscripts\tiny_mce\tiny_mce_src.js
and the : font_size_styles_value option
my convert_fonts_to_spans option is set to true.
What I want to do is remove the "x-small" option and replace it with "small" so that any [html][/html] will be converted to "small" which is equivalent to 12pt font...
However, making this adjustment to this file, and the "tiny_mce.js" file are not applying the change...
2 questions...
-Is there another file controlling this action??
-Is the visual editor instantiation being controlled by a Java package somewhere using the tinymce_init function???