Viewing 2 replies - 1 through 2 (of 2 total)
  • It looks like there is code in your site that is preventing the sticky element from scrolling up again:

    .et_pb_text_1 {
        background-color: #eceded;
        padding-top: 30px!important;
        padding-right: 30px!important;
        padding-bottom: 30px!important;
        padding-left: 30px!important;
        margin-top: 0px!important;
        margin-right: 0px!important;
        margin-bottom: 0px!important;
        margin-left: 0px!important;
    }<code></code>

    Notably, the use of !important blocks my plugin from working correctly. If you have any way of removing the class et_pb_text_1 from your sticky element, or remove the line margin-top: 0px!important; from the CSS code (which might cause issues with other elements that are using the same classname), the pushup should work.

    Thread Starter chrisso23

    (@chrisso23)

    Thank you very much! I removed the line margin-top: 0px!important; and now it works fine.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Push-up element dont work’ is closed to new replies.