To change the height of the quick edit category box add this code toy your functions.php page.
It will add the CSS as the last command and you then can change the height instead of scrolling all day.
1 2 3 4 5 6 7 8 9 10 11 12 |
function change_cat_meta_postbox_css(){ ?> <style type="text/css"> .cat-checklist.product_cat-checklist { min-height: 900px; background-color: #b8d86a; } </style><?php } add_action('admin_head', 'change_cat_meta_postbox_css'); |