简体   繁体   English

页脚之间背景下方的空白(仅移动设备)

[英]Blank space underneath background between footer (mobile only)

As the title says, the issue arises only when viewed on mobile. 如标题所述,只有在移动设备上查看时才会出现此问题。

On my pc it looks exactly as desired but when I open it up on a mobile device there is a blank space between the background image and the footer? 在我的PC上,它看起来完全符合要求,但是当我在移动设备上打开它时,背景图像和页脚之间有空白?

Site is live @ 网站上线了@

https://claritysalonspa.com https://claritysalonspa.com

Any help would be appreciated! 任何帮助,将不胜感激!

I am not sure how you are adding the background image in the backend, but try adding the following style. 我不确定您如何在后端中添加背景图片,但是尝试添加以下样式。 In here, .page-id-29 is the class added to the current page, and you added a background image to it. 在这里, .page-id-29是添加到当前页面的类,并且您在其中添加了背景图片。

.page-id-29 {
    background-image: url(YOUR-IMAGE);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;                 // add the height
    background-position: 50% 50%;  // center the image
}

so the solution is to add height: 100vh and also change the image position so it is centered. 因此解决方案是增加height: 100vh ,并更改图像位置以使其居中。

Add this in your style.css 将此添加到您的style.css中

@media screen and (max-width:600px){
.page-id-29{height: 95vh;}

}

It's because your body doesn't have enough content . 这是因为您的body没有足够的content If you add more content then there is no trick needed. 如果添加更多内容,则无需任何技巧。

You can overcome this by adding min-height to your body tag. 您可以通过在body标签上添加min-height来克服这一问题。

.page-id-29 {
    background-image: url(https://claritysalonspa.com/wp-content/uploads/2018/03/IMG_5215.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 92vh; /* this for height */
    background-position: center center; /* to center the image */
}

If you want to make your footer always bottom of the viewport please add thi also. 如果要使页脚始终位于viewport底部,请也添加此。

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 0 !important; 
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM