CSS code for wider side margins of plain editor

Windows, Version 1.7.11

Hello! I would like to ask what code I can add to the file "userchrome.css" if I want to have wider margins left and right of the plain editor window.

I just need more blank space between the text of the plain editor and the sidepanels.

Thank you very much for your help.

@Marco1, check here

Thank you so much for telling me about that article, yes the code there works perfectly to create margins on the sides of the plain text editor:

/* Limit the max width of editor, and center */
.CodeMirror-sizer {
margin-right: auto !important;
margin-left: auto !important;
max-width: 750px !important;
}
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.