Opened 5 years ago
Last modified 6 months ago
#48802 new defect (bug)
Twenty Twenty: Fixed Background Image on Cover template bugs on iPad
Reported by: | ianbelanger | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | normal | Version: | 5.3 |
Component: | Bundled Theme | Keywords: | has-screenshots needs-patch needs-testing |
Focuses: | css | Cc: |
Description
Originally reported on GitHub by @collet
https://github.com/WordPress/twentytwenty/issues/956
In the Customizer, if the user selects the "Fixed Background Image" option for the Cover template (which is activated by default), the cover image on an iPad (iOS 13) is blown-up.
Attachments (3)
Change History (10)
#4
@
5 years ago
- Focuses css added
- Keywords needs-patch added; needs-testing removed
Noted, thanks for pointing that out @TungstenE2
#5
@
5 years ago
This fixes the issue, but the image is fixed this way.
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) { .cover-header.bg-attachment-fixed { background-attachment: scroll; } }
I discovered this behavior by accident using the iPad of a friend. As this is a global problem I would like to ask developers to fix this, either by the code above and a note in the theme documentation or a real fix. Seems like other developers managed to fix parallax image scrolling on iOS devices. But to leave this without notifying the users should not be the case.
thx a lot
Cover template fixed background on iPad