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'); |






Latest Comments
Mark : @ Mark: Thanks for the answer. For example, if you have a code to save / use the folder ...
Mark : Thanks for the answer. For example, if you have a code to save / use the folder ...
Giovambattista Fazioli : @ Mark: in principle, absolutely, a lot depends on how and what to download. La. ..
Mark : Hello, good guide! I wanted to ask, you can use the same code to run a sql database? Instead of ...
Joseph : Hi I wanted to ask you how you can do in the post I uploaded a gallery of 50 images, for example, ...