Changing the skin on TinyMCE
Using Jamroom
You're getting your skin from here:
http://skin.tinymce.com/
Give it a name other that 'custom', I called mine "soreeyes".
* download that skin to your pc, unzip it.
* upload it to your jamroom site at:
/modules/jrCore/contrib/tinymce/skins/soreyes
--
open the form_editor.tpl file in either the ACP editor or the file, or the file over-ride and it will look like this:
{jrCore_module_url module="jrCore" assign="murl"}
{jrCore_module_url module="jrImage" assign="imurl"}
tinymce.init({
setup: function(ed) {
var mce_body_fs = $('body').width();
ed.on('FullscreenStateChanged', function(e) {
if (e.state === true) { $('.form_editor_holder .mce-fullscreen').width(mce_body_fs); }
else {
$('.form_editor_holder .mce-panel').css('width','');
}
});
},
body_id: "{$form_editor_id}",
.........
Add the skin's name to that
{jrCore_module_url module="jrCore" assign="murl"}
{jrCore_module_url module="jrImage" assign="imurl"}
tinymce.init({
setup: function(ed) {
var mce_body_fs = $('body').width();
ed.on('FullscreenStateChanged', function(e) {
if (e.state === true) { $('.form_editor_holder .mce-fullscreen').width(mce_body_fs); }
else {
$('.form_editor_holder .mce-panel').css('width','');
}
});
},
body_id: "{$form_editor_id}",
skin: "soreeyes",
.........