• Resolved emmeke

    (@emmeke)


    Hi,

    Since a few days I can’t use the option ‘Custom’ when setting a background image for tablet and mobile. Only for desktop I can still set the X & Y position of the background image.

    See also screenshot: https://paste.pics/I2U10

    How can this be fixed asap?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Please send me a link to your site.

    Thread Starter emmeke

    (@emmeke)

    It’s onehealthyyouaruba.com

    For those who are strugling with this bug hereby a CSS workaround:

    @media screen and (max-width: 1024px) {  // for tablet
      selector div {
        background-position-x: -20px !important;
        background-position-y: 0px !important;
      }
    }
    
    @media screen and (max-width: 767px) {  // for phone
      selector div { 
        background-position-x: -120px !important;
        background-position-y: 0px !important;
      }
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Background positioning is not working properly’ is closed to new replies.