Viewing 2 replies - 1 through 2 (of 2 total)
  • Thanks!

    Unfortunately, there is no simple way to override the styles. I will change this so that you can drop a css-file in your theme that overrides the plugin css. Maybe also an option to totally disable the plugin css.

    Until then, you can either hack the plugin css file directly (NOT recommended), or add this to your functions.php:

    add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
    
    function my_deregister_styles() {
    	wp_deregister_style( 'wp-infobox-styles' );
    	// deregister as many stylesheets as you need...
    }

    This will remove the plugin css, and you can make your own customisations in styles.css.

    Thread Starter ThorHammer

    (@thorhammer)

    Thanks, I will try it! keep up the good work, this is actually a really needed plugin!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP-Infobox] Great!!’ is closed to new replies.