• Resolved warda khan

    (@warda-khan)


    <?php 
    
    function load_css(){
        
        wp_enqueue_style('load_css', get_theme_file_uri('/style.css'));
        wp_enqueue_style('bootstrap-cdn-css', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css');
        wp_enqueue_script('bootstrap-cdn-js', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js', 'jquery', false, true);
    
        // wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
        // wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style') ); 
       
    }
    
    add_action('wp_enqueue_scripts', 'load_css');
    
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter warda khan

    (@warda-khan)

    In style.css, I have given body { color: orange; } it is not showing me orange color for heading in index.php, it means style.css not loaded correctly. and I want to load boostrap.js file for footer and style.css must work correctly. Could somebody help me to solve the error?

    Hi @warda-khan – Have you checked the browser console to make sure those files are loaded normally?

    Thread Starter warda khan

    (@warda-khan)

    Wrong file name function.php. It is Functions.php. Problem solved. ??

    • This reply was modified 3 years, 8 months ago by warda khan.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Style.css and Bootstrap CDN not loading in Function.php’ is closed to new replies.