/ Published in: PHP
Customize font and colors in the admin dashboard in a WordPress website
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
add_action('admin_head','my_admin_style'); function my_admin_style() { echo '<style> body, td, textarea, input, select { font-family: "arial"; font-size: 16px; color: #444; } </style>'; }