Promote your Service and Product online Contact us

+91 87 44 999667; +91 99 11 883996 info@3pixls.com, sales@3pixls.com

Apply Custom CSS to Admin Area


Apply Custom CSS to Admin Area
Css and PHP
Add to the functions.php file:
[php]
add_action(‘admin_head’, ‘my_custom_fonts’);

function my_custom_fonts() {
echo ‘<style>
body, td, textarea, input, select {
font-family: "Lucida Grande";
font-size: 12px;
}
</style>’;
}
[/php]