Child Theme
-
Just wondering if there is a child theme available? I have created one but the css I add does not seem to apply.
The Style looks like this:
/*
Theme Name: Theme Name
Theme URI: URL Here
Description: Child Theme Name
Author: Theme Author
Author URI: URL
Template: cakified
Version: 1.0.0
Text Domain: new-theme
*/
/*
.wave-svg path {
fill: #FFFFFF;
}
*/The Functions looks like this:
<?php
add_action( 'wp_enqueue_scripts', 'bare_nailscessity_enqueue_styles' );
function bare_nailscessity_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}
?>When viewing the source of the site I can see the style sheet it loaded but css above is not applying.
Thanks in Advance
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Child Theme’ is closed to new replies.
