Skip to content

Instantly share code, notes, and snippets.

@mwangepatrick
Created April 2, 2016 11:21
Show Gist options
  • Save mwangepatrick/d0b56f3fd87801c8074b9b0bd9a2ff26 to your computer and use it in GitHub Desktop.
Save mwangepatrick/d0b56f3fd87801c8074b9b0bd9a2ff26 to your computer and use it in GitHub Desktop.
Setting the height of wysiwyg
add_action('acf/input/admin_head', 'lh_acf_admin_head');
function lh_acf_admin_head() {
?>
<style type="text/css">
.acf-editor-wrap iframe {
height: 150px !important;
min-height: 150px;
}
.acf-editor-wrap .mce-fullscreen iframe{
height: 700px !important;
min-height: 700px;
}
</style>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment