Tagged: optimize press
Optimize Press is causing the admin panel drop downs to look funky. When I deactivate optimize press, no issue. When I activate it, issue returns. Take a look at the screen shot.
Hey!
Try adding this at the very end of your theme functions.php file:
function my_custom_admin_head(){
echo '<style>#wpwrap .avia_style_wrap select { width: 260px !important; }</style>';
}
add_action('admin_head', 'my_custom_admin_head');
Cheers!
Josue