将您的课程更改section.first
为以下内容:(第 110 行,在 stijl css 文件中):
padding: 0;
margin: 0;
position: relative;
width: 100%;
height: auto;
color: white;
text-align: center;
background-image: url(../img/header.jpg);
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
上面的代码修复了背景封面图像。
现在 html 中还有其他元素没有响应。因此,对于那些,将此代码添加到您的 css 中:
@media screen and (max-width: 480px){
#contactemailp{
margin-left:0px;
}
section.first .section-content .section-content-inner h1 {
font-size: 40px;
}
}