WordPress: How can override the Dashboard CSS

Hi I was wondering is there an easy way to override the WordPress Dashboard CSS styles?

Please help. Even a jQuery solution will do.

Related posts

Leave a Reply

2 comments

  1. Insert This Into a Plugin or a Custom Theme functions.php

    add_action( 'admin_head', 'showhiddencustomfields' );
    
    function showhiddencustomfields() {
        echo "<link rel='stylesheet' media='screen,projection' type='text/css' href='your-custom-css-file.css'>";
    }
    

    Use a developer tool bar to figure out which css rule you need to add to your custom css file.