• 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

    (@scuderiadank)

    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.