Are you a GenerateCustomer?

Do you have an active GP Premium or GenerateBlocks Pro license key?

Create a GenerateSupport account for GeneratePress and GenerateBlocks support in one dedicated place.

Create an account
Already have a GenerateSupport account? Login

Just browsing?

Feel free to browse the forums. Support for our free versions is provided on WordPress.org (GeneratePress, GenerateBlocks).

Want to become a premium user? Learn more below.

iPad gradient fix?

  • 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;
        }
    }
  • 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.