我在禁用免费WordPress主题的功能时遇到了一个小问题。这个主题叫做“ Bulan”,并在标题图像上添加了黄色的光辉,但是我似乎无法在代码中消除它。在chrome inspect视图中,我可以看到它是在查看索引页面源代码时内联生成的。
在索引的标题标签之间有:
<style id='bulan-style-inline-css' type='text/css'>
.site-header {
background-image: url("http://upabove.be/myrdd/wp-content/uploads/2018/10/town_summer-1.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.site-header::after {
content: "";
display: block;
width: 100%;
height: 100%;
background-color: rgba(204, 137, 0, 0.3);
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
</style>
有人知道如何解决这个问题吗?
网站网址为: www.upabove.be/myrdd
祝一切顺利,在此先感谢您, 米歇尔
答案 0 :(得分:1)
如果您无法在代码中找到它,则可以通过将CSS添加到标头中来覆盖它,如果它最终位于CSS之上,那么可悲的是,您必须添加“!important”确保它确实覆盖了伪类的背景色。例如:
.site-header::after {background: none;}