• Hi,

    How can I edit the WordPress toolbar font color?

    I tried installing WP Symposium Toolbar plugin, but it doesn’t seem to work with my WordPress version.

    Any ideas please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Create your own CSS file and edit the values for the tool bar elements.

    Hi there!

    The font color of the admin toolbar was a little tricky to change – here is how I did it:

    #wpadminbar a.ab-item,
    #wpadminbar>#wp-toolbar span.ab-label,
    #wpadminbar>#wp-toolbar span.noticon {
    	color: royalblue;
    }

    Here is the result:

    In case you want to change the background, it is much simpler:

    #wpadminbar {
    	background: lemonchiffon;
    }

    If you combine both style changes, this is the result.

    In case you aren’t already using one, it’s is recommended that you use a child theme to make changes to the code – you can find out how to to that here.

    However – if you simply want to alter the appearance (styles.css) like in the above example, you can use the Custom CSS module that comes with the Jetpack plugin. You could then make all your custom CSS changes in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS – safely – without worrying about these being wiped out during the next upgrade.

    Hope this helps – let us know how it goes!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Edit WP Toolbar font color’ is closed to new replies.