Also, what do you see in the Admin when using a tool like Web Inspector or Firebug to look at the TInyMCE iframe that is generated for the content blocks?
You'll really have to dig for it, but you'll see the iframe for the actual content inside of the WYSIWYG editor. Then, inside of the head, you should have your base href tag and links to stylesheets. For example,
Code: Select all
<head xmlns="http://www.w3.org/1999/xhtml">
<style id="mceDefaultStyles" type="text/css">.mceResizeHandle {position: absolute;border: 1px solid black;background: #FFF;width: 5px;height: 5px;z-index: 10000}.mceResizeHandle:hover {background: #000}img[data-mce-selected] {outline: 1px solid black}img.mceClonedResizable, table.mceClonedResizable {position: absolute;outline: 1px dashed black;opacity: .5;z-index: 10000}
</style>
<base href="http://YourDomain.com">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" rel="stylesheet" href="http://YourDomain.com/modules/TinyMCE/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/content.css">
<link type="text/css" rel="stylesheet" href="http://YourDomain.com/modules/TinyMCE/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css">
<link type="text/css" rel="stylesheet" href="http://YourDomain.com/modules/TinyMCE/stylesheet.php?templateid=24&mediatype=screen&bogus=1417623478">
</head>The next thing to Re-check is that setting under Advanced Settings:
Include only screen CSS:
Selecting this allows only attached stylesheets with the screen-mediatype selected to be included in the styles TinyMCE handles.
And confirming that any assigned stylesheet matches the preference set there (see screenshot attached).
The last thing I can think of is that there is a path issue within the template(s), config.php, server setting, or something related that could possibly prevent TinyMCE module from accessing and loading the stylesheets set in CMSMS. You may need to check server logs and the Admin Log just in case there is a server or PHP thing getting in the way.

