我想通过 CSS 添加我自己的背景图像来覆盖 Wordpress 的 27 岁标题图像。但是,它只显示空白...这是正文的 html:
<body class="page-template-default page page-id-5 logged-in wp-custom-logo has-header-image page-one-column title-tagline-hidden colors-light page-soins" data-aos-easing="ease" data-aos-duration="400" data-aos-delay="0" cz-shortcut-listen="true">
这是我的 CSS 来禁用 wordpress 的标题图片:
.page-soins .wp-custom-header {
display: none;
}
这是我的CSS来添加我的背景图片:
body.page-soins {
background: url("images/backgrounds/soins-bg-1.jpg") no-repeat center center fixed;
background-size: cover;
}
最后,这是页面的链接: www.http://latelierdegaia.ch/soins/
任何人都可以帮忙吗?太感谢了!