Reputation: 54
I edit the file style.css in theme, but it just help to CSS the frontend, not work with the backend admin. How can I CSS the backend admin? Thanks
Upvotes: 1
Views: 105
Reputation: 78
In your functions .php Add the flowing:
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<link rel="stylesheet" type="text/css" href="' . get_stylesheet_directory_uri() . '/style-admin.css">';
}
Upvotes: 2