Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
can you create a tinymce fiddle for this? (fiddle.tinymce.com/) – Thariama Jan 28 at 13:11
i've edited the question and added the fiddle link – user961627 Jan 28 at 13:32
+1 for the fiddle – Thariama Jan 28 at 15:12

1 Answer

Ok, you will need to use an init object and assign a different content_css when you reinit your editor. Have a look at this fiddle: http://fiddle.tinymce.com/FBcaab/1 . You will need to create the css file and use the content_css parameter to embed it on init.

share|improve this answer
I just tried what you said but it didn't work. Did I do it right? I added an absolute path right there on the fiddle, see here: fiddle.tinymce.com/GBcaab – user961627 Jan 28 at 15:31
By the way, why should tinyMCE.settings['content_css'] = "css/tinymcearabic.css"; be wrong? Is it wrong, or is it supposed to be right while I might be messing something else up? – user961627 Jan 28 at 15:35
added one more edit to the question. – user961627 Jan 28 at 15:55
no, tinyMCE.settings['content_css'] = "css/tinymcearabic.css" is not wrong, but it is safer to set the value before init because some settings get applied during initialization and changing them afterwards won't do a thing – Thariama Jan 29 at 6:58

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.