• Resolved nordie

    (@svenn36)


    Is it possible to make the code box for the snippets larger or at least make it so we can make it larger ?

    Would i not be nicer better to have the
    Insertion, Basic info, Smart Conditional Logic left and the code area right
    in other words 2 columsn

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mircea Sandu

    (@gripgrip)

    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.

    Thread Starter nordie

    (@svenn36)

    great and thanks
    the 2 columns layout would make it very nice ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘code box size an 2 columns’ is closed to new replies.