AdminBigWidth is a plugin for WordPress that can set the working area of the administration in full screen. It is a very simple plugin and trivial, in fact, his code does is change the CSS class .wrap :
1 2 3 4 | AdminBigWidth function () { ; echo '<style type="text/css">. wrap {max-width: none} </ style>'; } , 'AdminBigWidth' ) ; add_action ('admin_head', 'AdminBigWidth'); |
For those like me who uses the WordPress editor in HTML mode could be useful to set a monospaced font such as Courier font instead of the proposed default. In this way, at least for developers, it is easier to align source code. To do this just add, in the style of AdminBigWidth , a new approach to CSS that is reflected when the editor is in HTML mode. You could write a plugin (two lines) to do this, but it is better to use just the code AdminBigWidth , so as to avoid further load due to the nth Plugin:
1 2 3 4 | AdminBigWidth function () { ; echo '<style type="text/css">. wrap {max-width: none} # content # editorcontainer {font-family: "Courier New", Courier, monospace} </ style>'; } , 'AdminBigWidth' ) ; add_action ('admin_head', 'AdminBigWidth'); |










As always useful
I'll put it into practice immediately.