• Is it possible to completely disable custom css in Catch box? I’m trying to change the active link on the title header using a child css and no matter what it gets overridden by the parent style. I know I can put it in the custom css in wordpress and it will work, but I’ll probably make additional changes later and would like to have full control over the css. Here is my functions code:

    <?php
    
    function theme_enqueue_scripts() {
        //FIRST
        wp_enqueue_style( 'catchbox-style', get_template_directory_uri() . '/style.css' );
    
        //...custom queueing of .js and .css for Javascript plugins and such here
    
        //LAST
        wp_enqueue_style( 'catchbox-child-style', get_stylesheet_directory_uri() . '/style.css', array( 'catchbox-style' ) );
    }
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_scripts' );
    
    ?>

    Any help would be appreciated!

    Chaz

Viewing 1 replies (of 1 total)
  • Hello,
    You can always add you custom CSS on
    Dashboard -> Appearance -> Customize -> Theme Options -> Custom CSS

    This will override the theme’s CSS with your custom CSS. This is the most easiest and efficient way of overriding the theme’s CSS.

    If you have any queries and want a swift response please visit the themes official forum
    https://catchthemes.com/support-forum

    Hope it helps.
    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Completely disable custom css?’ is closed to new replies.