Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hi!
    I can try to help, but I need link to your site

    semester3

    (@semester3)

    hello I am having the same issue.

    I have changed certain settings around a few different times and playing with different margin-top and margin-bottom settings.

    When I have the margin top set high enough to make the widgets be passed the main optin form…The widgets don’t show til Im towards the end and then they scroll in the reverse direction.

    I assume scrolltop might cause issues.

    I’ve tried moving the hook priority a few different ways as well.

    semester3

    (@semester3)

    here is the site I am trying to fix the two coming soon images.

    Plugin Contributor Max Bond

    (@max-bond)

    Hello, semester3!

    This is a CSS problem. You have to change #sdrn_wrapper style:

    #sdrn_wrapper {
    position: relative!important;
    z-index: 2;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    transition: -webkit-transform .3s ease;
    transition: -moz-transform .3s ease;
    transition: -o-transform .3s ease;
    transition: -ms-transform .3s ease;
    transition: transform .3s ease;
    /* -webkit-transform: translate3d(0px, 0, 0); */
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate3d(0px, 0, 0);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    }

    Disable -webkit-transform: translate3d(0px, 0, 0); property!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Widget disappears when scrolling…’ is closed to new replies.