Change the color of admin bar
-
I have to change the admin bar:
from #5F5F5F on normal state and have change to #000000 on hover over 300 milliseconds.I added this to functions.php:
add_action(‘wp_head’, ‘change_bar_color’);
add_action(‘admin_head’, ‘change_bar_color’);
function change_bar_color() {
?>
<style>
#wpadminbar{
background: #5F5F5F !important;
}
</style>
<?php
}What else I should add ?
I don’t know how to go forward
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Change the color of admin bar’ is closed to new replies.