Can someone assist in helping me get this back? I have traditionally used classic editor and, until today, didnt even know what Guttenberg was…still dont. I just wand my wysywig editor to be the right number of characters across to resemble the final post (640)
Thanks ahead.
]]>I have an issue/bug to report. After installing Advanced Gutenberg, my editor is always full width, regardless of me changing the setting to “Large” or “Original”..
]]>But, at least one (if not both) of the environmental sites need to be able to post full width (no-sidebar) pages. Unfortunately, Frontier seems to set the edit-window to the default content width rather than to the width of the chosen page template.
Controlling the edit window width was important enough to folks posting on these sites (and I love Frontier enough) that I spent a few hours learning how to override functions (using a child theme) and modified two functions so that the edit window width adjusts automatically when a different width template is chosen. I also added a few css tweaks to pad the edit-window box away from the content and set a few styles to fix image nuances and to get rid of automatic italicizing in the ‘quote’ box (most of the custom css for each site is in a separate css file for the site rather than in the child theme).
I put relevant information about this tweak, including screen shots and a zip file of my child theme in this post on my site. I did resort to inserting a couple of conditional statements in Frontier’s functions.php, but the tweaks are all in the child theme. I’m hoping ronangelo will consider incorporating these tweaks in his next update, or at least add conditional statements to all function definitions in functions.php (so that any function can be replaced by the child theme without having to modify functions.php).
]]>I have made some hack into functions.php of the theme:
function mcekit_editor_style($url) {
if ( !empty($url) ) $url .= ',';
$url .= trailingslashit( get_bloginfo('url') ) . 'css/layout.css,' ;
return $url;
}
if ( is_admin() ) {add_filter('mce_css', 'mcekit_editor_style');}
So it allows me to load my theme .css and see styles in tinymce editor.
But the problem was, to make editors width same, as content on page, so I have made a little line:
body.mceContentBody {width: 960px; border: 1px solid black;}
and it work great. it shows black border around content that just fits content size on page. It allows to visually compose images, text etc.
But the problem is… that it indeed works in firefox and opera, but it has 100% width in ie8.
Any idea how to correct this issue (or change editors width diffrently)?
]]>