This might not be the most elegant solution, but it works. I made a simple plug-in for customizing the WordPress Admin area. Just save this code as custom_admin.php and put it in a folder named custom_admin:
<?php
/*
Plugin Name: Custom Admin
Plugin URI: http://ideatree-website-design.com/
Description: Creating a Better Looking WordPress Admin Screen
Version: 1.0
Author: Jeremy Jared
Author URI: http://ideatree-website-design.com/
*/
add_action( 'admin_print_styles', 'load_custom_admin_css' );
function load_custom_admin_css()
{
wp_enqueue_style('my_style', WP_CONTENT_URL . '/plugins/custom_admin/custom_admin.css');
}
?>
Next create a style-sheet and name it custom_admin.css and place this code in the file:
.form-table th, label, #your-profile label + a, #postcustomstuff table, #your-profile fieldset, #rightnow, div.dashboard-widget, #dashboard-widgets p.dashboard-widget-links, #replyrow #ed_reply_toolbar input {
display:none !important;
}
Place the custom_admin.php and the custom_admin.css in the custom_admin folder,
upload it to your plug-ins folder.
You can then activate it inside the plug-ins section. To make changes just go to plug-ins>edit> and choose the custom_admin plugin to add or remove css. This can also be used to customize the look of the admin area.