I've checked this: TinyMCE increase font family dropdown font sizes but my question is a little bit different. I want the font size to be changed dynamically, when a tinyMCE instance is instantiated on a specific textarea.
So I made a CSS file saying this:
.mceMenu span.mceText,.mceMenu .mcePreview {
font-size: 14px !important;
}
And added it at runtime like this:
tinyMCE.settings['content_css'] = "css/tinymcearabic.css";
tinyMCE.execCommand("mceAddControl", false, myel_id);
I have checked and the path is correct. But it didn't seem to make a difference.
Edit
If I add the CSS directly onto the page that I'm using TinyMCE, then the font does get bigger, but I can't keep it that way because the menu depends on the event that triggered it.
So I then tried to edit it dynamically using this:
$('.mceText').css('font-size','20px');
Again no use. Here's a fiddle: http://fiddle.tinymce.com/EBcaab
Any ideas?
Edit 2
The effect that I'm looking for is easy to get on the fiddle above if this is hard coded into the code:
<style>
.mceMenu span.mceText,.mceMenu .mcePreview {
font-size: 14px !important;
}
</style>
The only problem is that's a static solution while I need to get this effect dynamically.