• Resolved luigistefano

    (@luigistefano)


    Hello!

    When i use the ‘fixed’ attachment for my background it looks very nice on desktop. But on mobile version it gets totally zoomed in. I dont have this problem when i use the ‘scroll’ attachment. Anyone knows how to fix this so that it is both nice on mobile and desktop? (Or a way to turn ‘fixed’ off for mobile version.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Team Brainstorm Force

    (@brainstormteam)

    Hello @luigistefano ,

    I like to let you know, the Safari browser does not support the “background-attachment: fixed” on the iPhone devices as it has huge repaint cost and decimate scrolling performance, and this because it is disabled.
    
    So, to fix that issue you have to set the “background-attachment: scroll” for the Mobile and Tablet devices.
    
    Please use the following CSS in the Customizer under Additional CSS Tab to fix that issue:
    

    @media only screen and (max-width: 976px) {
        .wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image {
     
        background-attachment: scroll;
     
        }
    }

    I hope that helps. Let me know how it goes.

    Thread Starter luigistefano

    (@luigistefano)

    Hi! thanks alot for the reply, and sorry for the late reaction….

    It doesnt seem to work. I added in the CSS section in the costumizer. It gets still totaly zoomed in on safari 🙁 Maybe i am doing something wrong?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘section widget’ is closed to new replies.