在wordpress中使用子主题,我的样式不会覆盖索引中显示的样式。但是它们确实会覆盖父主题CSS。
我找不到原始代码,我将以下内容添加到functions.php中,将child-theme.css设置为默认样式表。
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', PHP_INT_MAX);
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'parent-style' ) );
}
我正在尝试添加但找不到的CSS-
body.custom-background {
background-size: cover !important;
}
Web检查器未找到child-theme.css-
答案 0 :(得分:0)
找到第一个样式表(如上图所示,显示为stack-88)并使用!important在此文件中添加代码行,即可覆盖索引样式。