-
Anonymous
https://eclectic-horseman.com/for-students-of-horsemanship/
Using this CSS works as a fix for iPads until I put a gradient on it.. Any tricks for that? See link above.. Images are getting lost.
/* iPad Fix */
@media only screen and (min-width: 768px) and (max-width: 1366px) {
.fixedipad {
background-attachment: initial !important;
}
} -
Hi there,
Your background image is attached to the pesudo element of the container, not the container itself.
Try changing your CSS to this, as mobile also requires it.
@media (max-width: 1366px) { .fixedipad:before { background-attachment: initial !important; } }
-
Anonymous
Once again, thank you Ying!
-
You are welcome 🙂
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.