Home › Forums › Feature Requests › Set WYSIWYG Height › Reply To: Set WYSIWYG Height
@danielgc, Your simple style solution within the action admin_head
, was all I needed. You can take things further by tracking down specific iframes on your posts and pages like so…
add_action('admin_head', 'admin_styles');
function admin_styles() {
?>
<style>
iframe[id^='wysiwyg-acf-field-favicon_'] {
min-height:40px;
}
</style>
<?php
}
?>
In my case, I’m targeting only the favicon fields on my WP admin pages, to have a height adjustment.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.