Hi,
I checked all the settings and they were the same, I then tried the reset option at the bottom and it is still the same, If I do not use the child theme it works, the child .css is just comments, this is what the child function.php contains
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;
// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED – Do not modify or remove comment markers above or below:
if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, trailingslashit( get_template_directory_uri() ) . ‘style.css’, array( ‘infinite-photography-bxslider-css’,’infinite-photography-fontawesome’,’magnific-popup’ ) );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’, 10 );
// END ENQUEUE PARENT ACTION
This came from a child-theme plugin
Clive