/ Published in: PHP
Add custom header style for Admin
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
add_action('admin_head', 'projectname_admin_head'); function projectname_admin_head() { echo '<style type="text/css">'; echo '.header { width:50px }'; echo '</style>'; }