k senn
asked 10 years ago

The header background and portfolio backgrounds I’m using are not showing up on an iPad Air running iOS 7.0.4. The header instead is just solid dark grey and the portfolio background is instead a checkered light grey background. Any advice on how to correct this?
 
Kim

2 Answers
Wilfred
answered 10 years ago

To resolve this issue you can go to Dashboard / Appearance / Customize /Custom Code, and add this code below to Header Code section:

 .handheld,
.handheld .section {
-webkit-background-size: auto !important;
background-size: auto !important;
}
.handheld .section {
background-position: center;
}

Hope this helps!

k senn
replied 10 years ago

Works great. Thank you!

Benjamin Hodge
replied 10 years ago

I am also having this same issue. The header background image looks fine on Desktop and iPhone, however when viewing on an iPad retina the image seems to disappear and just show the colour Yellow instead.

Wilfred
answered 10 years ago

Hi Benjamin,
To resolve this issue please go to Dashboard / Appearance / Customize /Custom Code, and add the code below to Header Code section:

<style>
@media(max-width:1280px) {
body, .section.portfolio, .section.blog {
background-position: top center;
background-size: auto;
}
}
</style>

Hope this hleps!

Powered by DW Question & Answer Pro