Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter rattrayrob

    (@rattrayrob)

    Hi Calvin,

    Thanks for the quick response.

    This is where I get a little lost. I assume the parent theme is bootstrap as that is my “theme”. Here is the code once I switch to wp_enqueue_style. However this renders the same issue.

    function theme_styles() {
    	 	wp_enqueue_style('stylesheet','http://fonts.googleapis.com/css?family=Cabin:400,600|Open+Sans:300,600,400');
    
    wp_enqueue_style('bootstrap_css', get_template_directory_uri() . '/css/bootstrap.min.css', 1, array() );
    
     wp_enqueue_style('responsive_css', get_template_directory_uri() . '/css/responsive.css',2,);
    
    wp_enqueue_style('styles_css', get_template_directory_uri() . '/css/styles.css',3,);
    
    wp_enqueue_style('custom_css', get_template_directory_uri() .
     		'/css/custom.css',4,);
    
    wp_enqueue_style('orange_css', get_template_directory_uri() . '/css/colors/orange.css');
    
    }
    
    add_action('wp_enqueue_scripts', 'theme_styles');
Viewing 1 replies (of 1 total)