j'ai créé le thème de l'enfant comme https://codex.wordpress.org/Child_Themes
Voici mon style.css
/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
/*************** ADD CUSTOM CSS HERE. ***************/
@media only screen and (max-width: 48em) { }
/*************** ADD MOBILE ONLY CSS HERE ***************/
.absolute-footer.dark {
color: rgb(74, 74, 74) !important;
}
.absolute-footer.dark {
color: rgb(74, 74, 74);
}
h3
{
background-color: #c75050 !important;
}
Mais les modifications apportées à style.css du thème enfant ne fonctionnent pas comme prévu. J'ai utilisé le code suivant dans le fichier functions.php de mon thème enfant
add_action( 'wp_enqueue_scripts', 'load_my_child_styles', 20 );
function load_my_child_styles() {
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri().'/style.css', array('twentyfourteen-style'), '1.0.0' );
}
Mais ça ne marche pas non plus. S'il vous plaît laissez-moi savoir est comment faire style.css au travail
Je pense qu'il y a un problème avec votre code functions.php. Essayez d’utiliser ceci https://wordpress.stackexchange.com/a/182023/110516