Viewing 1 replies (of 1 total)
  • Hi!
    I noticed that the plugin loads its stylesheet on line 214 of the plugin file using “wp_head”:

    add_action( 'wp_head', 'dropcap_css' );

    You could change that to the following and see if the stylesheet loads in the header:

    add_action( 'wp_enqueue_scripts', 'dropcap_css' );

    I’ve tested it and it shows up inside the <head> element. Perhaps the author wants to change it in the next version, since “wp_head” is not really used anymore for loading scripts and styles.

    Hope this helps!

Viewing 1 replies (of 1 total)
  • The topic ‘Why new style sheet?’ is closed to new replies.