Custom style WordPress admin dashboard


/ Published in: PHP
Save to your folder(s)

Customize font and colors in the admin dashboard in a WordPress website


Copy this code and paste it in your HTML
  1. add_action('admin_head','my_admin_style');
  2.  
  3. function my_admin_style() {
  4. echo '<style>
  5. body, td, textarea, input, select {
  6. font-family: "arial";
  7. font-size: 16px;
  8. color: #444;
  9. }
  10. </style>';
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.