如果这个问题与其他问题重复,我会道歉。但我无法找到正确的答案。 我正在建立一些网页。我通过WordPress使用Divi主题。我创造了Divi主题的儿童主题。 我在子主题中通过function.php附加了自定义style.css:
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style',
get_template_directory_uri().'/style.css' );
}
但是当我想要改变一些主要元素时,比如body {},它不会覆盖父样式。我的实际定制过程是:
我找不到任何好的资源来了解这个所有父母 - >儿童定制的工作方式,而且我在努力解决基本问题。你能帮助我,如何轻松改变父母主题的许多元素? 你能帮忙的话,我会很高兴。谢谢你们!
编辑:网站上有代码: site_inspect
我的css中有代码:
body.custom-background {
background-image: url("images/pozadie_B5.png");
background-color: black;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center -25%;
}
当我将它放在THEME定制器中的附加CSS中时,它可以工作。但是在我的孩子主题的style.css中却没有。