[ad_1]
Hi @svenn36,
Thank you for your suggestion, I made a note to look into ways to allow you to easily resize the code editor.
If you want to adjust that right away you can create a new snippet with the following code and set it to Auto-Insert in the Admin-only.
add_action( 'wpcode_admin_page_content_wpcode-snippet-manager', function() {
echo '<style>.CodeMirror {height: 800px;}</style>';
});
You can then adjust 800px to whatever you need.
