Remove Gutenberg WP Column styles sheet.

//Do this shit to keep GBerg from jaking up your stuff. function smartwp_remove_wp_block_library_css(){ wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); wp_dequeue_style( 'wc-block-style' ); // Remove WooCommerce block CSS } add_action( 'wp_enqueue_scripts', 'smartwp_remove_wp_block_library_css', 100
Add this to your functions file to remove the WP Columns classes. It won't remove the addition of the classes but it will remove the corresponding style sheet that could potentially mess up your styling.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.