Editing space large?

Editing space large?

by Alliks M -
Number of replies: 3
Hi,
Is it possible to make the small editing space larger.
Why is it so small?
My screen is empty and all the work I am doing is compressed in this tiny box, it makes no sense.
I want to edit on full screen Microsoft WORD style, not iPhone size notepad. 

Everything should be accessible within one page. 
At the moment I have to scroll on 2 pages.
-The editing page and
-The main page where all the settings are on the top and the save button/tags are at the button.
messy.




If I zoom out at 67% I can see all buttons. 
Why are we using all the screen space?

Can you make a left column with all the buttons/links/settings/tags/save
middle column with all the editing 
right column with the content
And use all the screen space.

Thanks





Average of ratings: -
In reply to Alliks M

Re: Editing space large?

by Mary Cooch -
Picture of Documentation writers Picture of Moodle HQ Picture of Particularly helpful Moodlers Picture of Testers Picture of Translators
Are you aware you can click and drag the bottom right hand corner to make the box larger?


Average of ratings: Useful (1)
In reply to Alliks M

Re: Editing space large?

by Dominique Bauer -
Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Plugin developers

Use full screen mode in Atto editor:

  1. First, you need to install the Full Screen (Atto) plugin. You can find it at https://moodle.org/plugins/atto_fullscreen➚.
  2. After installation, go to Site administration and navigate to Plugins > Text editors > Atto toolbar settings.
  3. Scroll down to "Toolbar config" and edit an existing group by adding "fullscreen" to it. For example, you can include it in a group like "other = html, fullscreen, wiris, backcolor." Alternatively, create a new group like this: "fullscreen = fullscreen."
  4. Now, you should see the fullscreen icon (four arrows) in the Atto toolbar.
  5. Click on this fullscreen icon to switch between normal mode and fullscreen mode.

Use full screen mode in the TinyMCE editor:

  1. If you're using the TinyMCE editor, select View / Fullscreen in the toolbar.
  2. Alternatively, you can use the keyboard shortcut Ctrl + Shift + F to quickly switch between normal mode and full screen mode.

These steps should help you make the most of full-screen editing in both the Atto and TinyMCE editors. Enjoy your wide writing or editing experience!

Average of ratings: Useful (1)
In reply to Alliks M

Re: Editing space large?

by Dominique Bauer -
Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Plugin developers

Hello Mary,

... drag the bottom right hand corner to make the box larger. Actually, only the height of the input box can be increased, not the width. To resize both the height and width, we could use the following little script:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
    setTimeout(function() {
        if ( window.location.href.indexOf("edit") > -1 ) {
            $(".tox.tox-tinymce").css("resize","both");  // TinyMCE
            $("#id_introeditoreditable").css("resize","both");  // Atto
        }
    }, 1000);
});
</script>

But I think we can do even better by adjusting the width of different parts of the page using this other little script:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
    setTimeout(function() {
        if ( window.location.href.indexOf("edit") > -1 ) {
            $("#topofscroll").removeClass("main-inner");
            $(".col-md-3").css("max-width","250px");
            $("#page").css({"padding-left":"0px", "padding-right":"0px"});
        }
    }, 1000);
});
</script>

These are, of course, quick and temporary workarounds while we wait for more permanent solutions. Nevertheless, they are simple to use and work quite well. I hope they can be of help to OP Alliks.

Average of ratings: Useful (2)