If you’ve ever used the new Composer feature in Concrete5, you’ll notice that the tinyMCE editor doesn’t use your theme’s typography.css file.
Make a copy of concrete/elements/editor_config.php into the root “elements” folder.
Copy this:
<?php if (!is_object($theme)){ $theme = PageTheme::getSiteTheme(); } ?> content_css : '<?php echo $theme->getThemeEditorCSS()?>',
and paste below:
convert_urls: false,
around line 39.
I usually have my main css in a css folder in the theme and typography.css at the root of the theme. If you put your typography.css elsewhere or don’t even use one, this may not work.
Recent Comments