Title: wp-admin css
Last modified: August 29, 2023

---

# wp-admin css

 *  Resolved [Sean](https://wordpress.org/support/users/sean-h/)
 * (@sean-h)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/wp-admin-css/)
 * Maybe I’m missing something, but is it possible to insert the following css with
   the free version of Code Snippets? The only custom code I need to run right now
   is to show the WPML language switcher in wp-admin on mobile, to manage multi-
   language comments, on my phone. Posting this css in Appearance > Customize doesn’t
   seem to work.
 *     ```wp-block-code
       #wp-admin-bar-WPML_ALS {
       	display: block!important;
       }
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [Yordan Soares](https://wordpress.org/support/users/yordansoares/)
 * (@yordansoares)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-css/#post-17069856)
 * Hi [@sean-h](https://wordpress.org/support/users/sean-h/),
 * Although the CSS tab is a Pro feature, you will be still able to insert CSS rules
   on the Dashboard with a code snippet like this:
 *     ```wp-block-code
       add_action( 'admin_head', function() {
       	?>
       	<style>
       		#wp-admin-bar-WPML_ALS {
       			display: block!important;
       		}
       	</style>
       	<?php
       }, 10, 1 );
       ```
   
 *  Plugin Author [Shea Bunge](https://wordpress.org/support/users/bungeshea/)
 * (@bungeshea)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-css/#post-17071340)
 * Thanks [@yordansoares](https://wordpress.org/support/users/yordansoares/)!
 * [@sean-h](https://wordpress.org/support/users/sean-h/), I definitely recommend
   using Yordan’s code above.
 *  Thread Starter [Sean](https://wordpress.org/support/users/sean-h/)
 * (@sean-h)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-css/#post-17071812)
 * [@bungeshea](https://wordpress.org/support/users/bungeshea/) I’m about to! It’s
   high up on the to-do list 🙂
 *  Thread Starter [Sean](https://wordpress.org/support/users/sean-h/)
 * (@sean-h)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-css/#post-17072171)
 * Thanks, it works! 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘wp-admin css’ is closed to new replies.

 * ![](https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878)
 * [Code Snippets](https://wordpress.org/plugins/code-snippets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/code-snippets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/code-snippets/)
 * [Active Topics](https://wordpress.org/support/plugin/code-snippets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/code-snippets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/code-snippets/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [Sean](https://wordpress.org/support/users/sean-h/)
 * Last activity: [2 years, 8 months ago](https://wordpress.org/support/topic/wp-admin-css/#post-17072171)
 * Status: resolved