oh I finally found a tutorial that worked, after trying plenty that were not working anymore or plugins that didn't work:
https://wordpress.stackexchange.com/...rdpress-editor
functions.php
// Style the tinymce editor.
function my_theme_add_editor_styles() {
add_editor_style( 'my-editor-style.css' );
}
add_action( 'init', 'my_theme_add_editor_styles' );
my-editor-styles.css
[css]#tinymce {
max-width: 1640px;
}[/css]
Note however - I do not know why, but this causes full width instead of 1640px. But I wanted full width anyhow...
Actually I think the reason is that my code is wrong - but atahualpa has no editor stylesheet at all, so the tinymce editor falls back to some default stylesheet. As I created a stylesheet, even if wrong - it resets to full width. The important thing is to have a style sheet. I know atahualpa is not really developped anymore - but maybe a basic editor stylesheet should be added? however than my child theme wouldn"t work anymore so maybe better not...
Well the best default behaviour would be - if it"s full width or takes the width from the responsive stuff .i.e.
/* #### small Desktops #### */
@media screen and (min-width: 801px){
tbody {max-width: 1080px; margin: auto;}
div#container {max-width: 1080px; margin: auto;}
table#layout {max-width: 1080px; margin: auto; font-size: 0.80em;}
}
/* #### HD Desktops #### */
@media screen and (min-width: 1260px){
tbody {max-width: 1250px; margin: auto;}
div#container {max-width: 1250px; margin: auto;}
table#layout {max-width: 1240px; margin: auto; font-size: 0.85em;}
}
from css inserts..