Style.css doesn’t load
-
Hello,
I tried to add a new stylesheet for my theme but the stlye sheet isn’t loaded. For the moment my website isn’t online so I can’t give you the url.
My theme is OceanWp. I created a folder “oceanwp-child” in the folder “themes”. The parent folder of this theme is “oceanwp”.
Here is my file functions.php :
<?php /** ** activation theme **/ add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); function my_theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } ?>And the file style.css :
/* Theme Name: Thème enfant OceanWp Template: oceanwp Version: 0.1.0 */ p { font-size: 50px; color: red; }Can you tell me if something is missing ? Or what I can check to debug?
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Style.css doesn’t load’ is closed to new replies.