Home › Forums › Gutenberg › ACF Fields Being Blocked by Editor Status Bar › Reply To: ACF Fields Being Blocked by Editor Status Bar
I think you are right about it being a gutenberg bug. The bar covers the scrollbar down arrow too in the editing window. I found a bit of a workaround by adding a special admin area CSS.
In my theme directory a file called style-admin.css
which contains the following:
#editor .postbox:last-child > .inside.acf-fields {
padding-bottom: 2rem !important;
}
Then add the following to my functions.php
function mytheme_admin_style() {
wp_enqueue_style('admin-styles', get_template_directory_uri().'/style-admin.css');
}
add_action('admin_enqueue_scripts', 'mytheme_admin_style');
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.