Title: Remove CSS from header?
Last modified: March 19, 2017

---

# Remove CSS from header?

 *  [scuderiadank](https://wordpress.org/support/users/scuderiadank/)
 * (@scuderiadank)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/remove-css-from-header/)
 * Is there an easy way to stop this plugin’s css file from loading in the header?
   All it contains is:
 * `.wpfla.round-avatars{-webkit-border-radius:50%;-moz-border-radius:50%;border-
   radius:50%;}`
 * I would prefer to just add this to my site’s current style sheet if possible?

Viewing 1 replies (of 1 total)

 *  Thread Starter [scuderiadank](https://wordpress.org/support/users/scuderiadank/)
 * (@scuderiadank)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/remove-css-from-header/#post-8944988)
 * Found an easy way to dequeue the style sheet. Just pop this into functions.php
 *     ```
       //Dequeue WP First Letter CSS
       add_action('wp_print_styles', 'dequeue_css_from_plugin', 100);
       function dequeue_css_from_plugin()  {
       	wp_dequeue_style( "wpfla-style-handle" ); 
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Remove CSS from header?’ is closed to new replies.

 * ![](https://ps.w.org/wp-first-letter-avatar/assets/icon-128x128.png?rev=1093045)
 * [WP First Letter Avatar](https://wordpress.org/plugins/wp-first-letter-avatar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-first-letter-avatar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-first-letter-avatar/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-first-letter-avatar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-first-letter-avatar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-first-letter-avatar/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)

 * 1 reply
 * 1 participant
 * Last reply from: [scuderiadank](https://wordpress.org/support/users/scuderiadank/)
 * Last activity: [9 years, 2 months ago](https://wordpress.org/support/topic/remove-css-from-header/#post-8944988)
 * Status: not resolved