You can de-register the default WP Club Manager stylesheet by adding the following snippet to your themes functions.php
file, which hooks into the wp_print_styles
action:
function custom_deregister_styles() { wp_deregister_style( 'wpclubmanager-general' ); } add_action( 'wp_print_styles', 'custom_deregister_styles', 100 );