在您的HTML-Code 您有以下声明:
#header-background, #colophon, #site-navigation {
background: url(\'\') no-repeat center center fixed;
background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-webkit-background-size: cover;
}
对于Firebug,我看到了,这将覆盖您的CSS声明
#header-background {
background: url("images/background-reclaimed.jpg") no-repeat fixed center center rgba(0, 0, 0, 0);
display: inline-block;
height: 100vh;
max-height: 1000px;
}
如果我关闭第一个声明,就会显示图片。
我的第一个猜测是:检查你的标题。php,为什么这个声明为#header-background
.