0

我想通过 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/

任何人都可以帮忙吗?太感谢了!

4

3 回答 3

1
.site-content-contain

.site-mast-head

都有

background-color: #fff;

这涵盖了您的background-image.

于 2018-03-01T13:04:31.177 回答
0

我找到了一种解决方法!但确实有效。我只是将 CSS 背景图像添加到“站点标题”类而不是“正文”。

body.page-soins .site-header {
    background: url("images/backgrounds/soins-bg-1.jpg") no-repeat center center fixed;
    background-size: cover;
}
于 2018-03-01T13:02:39.653 回答
0

你只需background-color: #fafafa;要从你的.site-header班级中删除。

于 2018-03-01T13:05:31.913 回答